Tracking route OSRM¶
API path: /route/osrm
.
get¶
Gets route points via OSRM API.
parameters¶
name | description | type |
---|---|---|
start | Location JSON object. Start of route. | JSON object |
end | Location JSON object. End of route. | JSON object |
waypoints | Optional. List of transitional points. [{locationA},{locationN}] | array of JSON objects |
point_limit | Optional. If specified, the returned route will be simplified to contain this number of points (or less). Min=2. | int |
Where location described in data types description section.
examples¶
curl -X POST 'https://api.navixy.com/v2/fsm/route/osrm/get' \
-H 'Content-Type: application/json' \
-d '{"hash": "22eac1c27af4be7b9d04da2ce1af111b", "start": {"lat": 56.827001, "lng": 60.594296}, "end": {"lat": 52.835601, "lng": 60.514721}}'
response¶
{
"success": true,
"distance": 2546,
"time": 194,
"list": [{"lat": 56.827001, "lng": 60.594296}, {"lat": 52.835601, "lng": 60.514721}],
"key_points": [{
"id": 123,
"lat": 56.827,
"lng": 60.594296
}]
}
distance
- int. Length in meters.time
- int. Duration in seconds.list
- list of route points. Location objects.key_points
- list of points corresponding tostart
point,waypoints
andend
point (in that sequence).id
- int. index in pointslist
.lat
- float. Latitude.lng
- float. Longitude.
errors¶
- 215 (External service error).
-
218 (Malformed external service parameters).
{ "success": false, "status": { "code": 218, "description": "Malformed external service parameters" }, "errors": [ { "status": "NOT_FOUND", "status_code": 207, "message": "Cannot find route between points" } ] }
status
- string enum.NOT_FOUND
– indicates at least one of the locations specified in the request's origin, destination, or waypoints could not be geocoded, or OSRM cannot find route.UNKNOWN_ERROR
– unexpected OSRM error code.
status_code
- int. OSRM status code (don't rely on it).message
- string. OSRM error message (don't rely on it).
-
236 (Feature unavailable due to tariff restrictions) – if there is at least one tracker without "routing" tariff feature.
Last update: October 23, 2020