Finds the route between coordinates in the supplied order.
Request
GET https://apirever.navirider.com/{location}/route/{waypoints}
URL Parameters
-
location
- (required) the location/map to be used for routing. Valid values are:
-
na
for North America
-
eu
for Europe (including Turkey and whole Russia)
-
other
for Australia & Oceania (incl. New Zealand), South Africa, Columbia and Brazil
-
waypoints
- (required) semicolon separated list of lng,lat pairs (waypoints) to
route through. You must
provide at least 2 waypoints (start, end)
Parameters
-
token
- (required) API token to identify your requests.
-
geometries
- format of the returned geometry. Allowed values are:
geojson
(as LineString),
polyline
with precision 5,
polyline6
(a polyline with precision 6). The default value is
polyline
.
-
overview
- type of returned overview geometry. Can be
full
(the most detailed geometry available),
simplified
(a simplified version of the full geometry), or
false
(no overview geometry). The default is
simplified
.
-
steps
- whether to return steps and turn-by-turn instructions. Can be true or false. (default false)
-
alternatives
- whether to return alternative routes. Can be true or false. (default false)
-
voice_instructions
- whether to return voice instructions
-
banner_instructions
- whether to return banner instructions
Example test
https://apirever.navirider.com/na/route/-122.084143,37.422341;-122.139108,47.644164?token=YOUR_TOKEN&geometries=geojson&steps=true&voice_instructions=true&banner_instructions=true