interface RoutingInterface {
    getClosestNetworkCoordinate: ((coordinate: Position) => null | Position);
    getRoute: ((startCoord: Position, endCoord: Position) => null | Feature<LineString, GeoJsonProperties>);
}

Implemented by

Properties

getClosestNetworkCoordinate: ((coordinate: Position) => null | Position)
getRoute: ((startCoord: Position, endCoord: Position) => null | Feature<LineString, GeoJsonProperties>)