Map Matching API
Snap GPS traces to the road network.
Endpoint
POST /v1/match
Request Body
{
"gps_points": [[23.81, 90.41], [23.80, 90.40], [23.79, 90.39]],
"vehicle_type": "car"
}
Example
cURL
curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" \
-d '{"gps_points":[[23.81,90.41],[23.80,90.40]],"vehicle_type":"car"}' \
"https://map.arohon.co/v1/match"