org.openlr.map.MapReader Maven / Gradle / Ivy
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