org.openlr.locationreference.GeoCoordinateLocationReferenceImpl Maven / Gradle / Ivy
package org.openlr.locationreference;
import lombok.Data;
import org.locationtech.jts.geom.Coordinate;
@Data
class GeoCoordinateLocationReferenceImpl implements GeoCoordinateLocationReference {
private final Coordinate coordinate;
}