## Match GPS coordinates to the road network `$client->mapMatch->match(GeoJsonGeometry trace, ?list radiuses): MapMatchResult` **post** `/api/v1/map-match` Match GPS coordinates to the road network ### Parameters - `trace: GeoJsonGeometry` GPS trace (GeoJSON LineString geometry) - `radiuses?:optional list` Search radius per coordinate in meters (optional, default 50) ### Returns - `MapMatchResult` - `GeoJsonGeometry geometry` - `Properties properties` - `Type type` - `?list> legs` Matched route legs between consecutive trace points ### Example ```php mapMatch->match( trace: ['coordinates' => [0], 'type' => 'Point'], radiuses: [0] ); var_dump($mapMatchResult); ```