Match GPS coordinates to the road network
MapMatchResult MapMatch.Match(MapMatchMatchParamsparameters, CancellationTokencancellationToken = default)
POST/api/v1/map-match
Match GPS coordinates to the road network
MapMatchMatchParams parameters = new()
{
Trace = new()
{
Coordinates = new(
[
0
]
),
Type = Type.Point,
},
};
var mapMatchResult = await client.MapMatch.Match(parameters);
Console.WriteLine(mapMatchResult);