interface ClosestPoint {
    coordinates: Coordinate;
    distanceFromSearched: number;
    distanceFromStart: number;
    fullLength?: number;
}

Properties

coordinates: Coordinate
distanceFromSearched: number
distanceFromStart: number
fullLength?: number