Match GPS coordinates to the road network
POST/api/v1/map-match
Match GPS coordinates to the road network
Match GPS coordinates to the road network
curl https://plaza.fyi/api/v1/map-match \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $PLAZA_API_KEY" \
-d '{
"coordinates": [
{
"lat": 48.8566,
"lng": 2.3522
},
{
"lat": 48.857,
"lng": 2.353
},
{
"lat": 48.8575,
"lng": 2.354
}
]
}'{
"features": [
{
"geometry": {
"coordinates": [
2.3522,
48.8566
],
"type": "Point"
},
"properties": {
"distance_m": 0,
"edge_id": 0,
"matchings_index": 0,
"name": "name",
"original": [
0,
0
],
"waypoint_index": 0
},
"type": "Feature"
}
],
"matchings": [
{
"foo": "bar"
}
],
"type": "FeatureCollection"
}Returns Examples
{
"features": [
{
"geometry": {
"coordinates": [
2.3522,
48.8566
],
"type": "Point"
},
"properties": {
"distance_m": 0,
"edge_id": 0,
"matchings_index": 0,
"name": "name",
"original": [
0,
0
],
"waypoint_index": 0
},
"type": "Feature"
}
],
"matchings": [
{
"foo": "bar"
}
],
"type": "FeatureCollection"
}