org.openlr.locationreference.GeoCoordinateLocationReference Maven / Gradle / Ivy
package org.openlr.locationreference;
import org.locationtech.jts.geom.Coordinate;
/**
* A geo-coordinate location reference.
*/
public interface GeoCoordinateLocationReference extends PointLocationReference {
/**
* @return the coordinate of the geo-coordinate location
*/
Coordinate getCoordinate();
}