org.openlr.locationreference.CircleLocationReference Maven / Gradle / Ivy
package org.openlr.locationreference;
import org.locationtech.jts.geom.Coordinate;
/**
* A circle location reference.
*/
public interface CircleLocationReference extends LocationReference {
/**
* @return the center of the circle
*/
Coordinate getCenter();
/**
* @return the radius of the circle in meters
*/
int getRadius();
}