org.openlr.locationreference.PointAlongLineLocationReferenceImpl Maven / Gradle / Ivy
package org.openlr.locationreference;
import lombok.Data;
import org.openlr.map.Orientation;
import org.openlr.map.SideOfRoad;
@Data
class PointAlongLineLocationReferenceImpl implements PointAlongLineLocationReference {
private final LocationReferencePoint firstLocationReferencePoint;
private final LocationReferencePoint lastLocationReferencePoint;
private final double relativePositiveOffset;
private final Orientation orientation;
private final SideOfRoad sideOfRoad;
}