All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openlr.locationreference.LocationReferencePointImpl Maven / Gradle / Ivy

package org.openlr.locationreference;

import lombok.Data;
import org.locationtech.jts.geom.Coordinate;
import org.openlr.map.FormOfWay;
import org.openlr.map.FunctionalRoadClass;

import java.util.Optional;

@Data
class LocationReferencePointImpl implements LocationReferencePoint {
    private final Coordinate coordinate;
    private final double bearing;
    private final FunctionalRoadClass functionalRoadClass;
    private final FormOfWay formOfWay;
    private final Optional pathAttributes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy