Map Match
Match GPS coordinates to the road network
POST/api/v1/map-match
ModelsExpand Collapse
MapMatchResult = object { features, matchings, type } Map matching result as a GeoJSON FeatureCollection. Each Feature is a snapped tracepoint. The top-level matchings array contains the matched sub-routes connecting consecutive tracepoints.
MapMatchResult = object { features, matchings, type }
Map matching result as a GeoJSON FeatureCollection. Each Feature is a snapped tracepoint. The top-level matchings array contains the matched sub-routes connecting consecutive tracepoints.
features: array of object { geometry, properties, type } Snapped tracepoint Features in input order
features: array of object { geometry, properties, type }
Snapped tracepoint Features in input order
GeoJSON Geometry object per RFC 7946. Coordinates use [longitude, latitude] order. 3D coordinates [lng, lat, elevation] are used for elevation endpoints.
GeoJSON Geometry object per RFC 7946. Coordinates use [longitude, latitude] order. 3D coordinates [lng, lat, elevation] are used for elevation endpoints.
coordinates: array of number or array of array of number or array of array of array of number or array of array of array of array of numberCoordinates array. Nesting depth varies by geometry type: Point = [lng, lat], LineString = [[lng, lat], ...], Polygon = [[[lng, lat], ...], ...], etc.
coordinates: array of number or array of array of number or array of array of array of number or array of array of array of array of number
Coordinates array. Nesting depth varies by geometry type: Point = [lng, lat], LineString = [[lng, lat], ...], Polygon = [[[lng, lat], ...], ...], etc.
One of the following: