All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openlr.map.MapReader Maven / Gradle / Ivy

There is a newer version: 2.0-beta3
Show newest version
package org.openlr.map;

import org.locationtech.jts.geom.Coordinate;
import org.locationtech.jts.geom.Envelope;

import java.util.List;
import java.util.Optional;

public interface MapReader> {
    List getLinesInCircle(Coordinate center, double radius);
    List getLinesInBounds(Envelope bounds);
    Optional getLine(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy