I am trying to calculate the distance between two coordinates across the Atlantic Ocean using the Azure Maps routing service. Unfortunately I always get the following error:
{
"error": {
"code": "400 BadRequest",
"message": "Engine error while executing route request: NO_ROUTE_FOUND"
}
}
Does Azure Maps support the calculation or am I doing something wrong?
This is the example of the request which returns the error: https://atlas.microsoft.com/route/directions/json?api-version=1.0&subscription-key=XXXX-XXXX-XXXX-XXXX&query=29.757290,-95.357379:48.876584,2.339379
The coordinates are valid. 29.757290,-95.357379 is Houston (Texas, USA) 48.876584,2.339379 is Paris (France, Europe)
Can anybody help? Thanks.