Routing
Calculate a route between two points
POST/api/v1/route
Snap a coordinate to the nearest road
GET/api/v1/nearest
Calculate an isochrone from a point
GET/api/v1/isochrone
Calculate a distance matrix between points
POST/api/v1/matrix
ModelsExpand Collapse
MatrixRequest = object { destinations, origins, mode }
MatrixRequest = object { destinations, origins, mode }
Destination points (GeoJSON MultiPoint geometry)
Destination points (GeoJSON MultiPoint geometry)
NearestResult = object { geometry, properties, type } GeoJSON Point Feature snapped to the nearest road segment
NearestResult = object { geometry, properties, type }
GeoJSON Point Feature snapped to the nearest road segment
RouteRequest = object { destination, origin, mode }
RouteRequest = object { destination, origin, mode }
Destination point (GeoJSON Point geometry)
Destination point (GeoJSON Point geometry)
RouteResult = object { geometry, properties, type }
RouteResult = object { geometry, properties, type }