Request access to Azure Maps RouteRangeHD preview (high-definition isochrones)

Eliot MacDonald 25 Reputation points
2025-07-23T15:13:03.5+00:00

Hello,

I would like to request access to the RouteRangeHD preview feature in Azure Maps, which was previously offered as a public preview (documentation: https://learn.microsoft.com/en-us/azure/azure-maps/how-to-use-route-range#access-high-definition-isochrones-ranges).

I'm developing Web applications that depend on high-resolution isochrone boundaries being shown on maps similar to the previous Bing Maps Isochrones API. The standard Route Range output is far too coarse for our requirements.

We have already set up our Azure Maps account (subscription id d123273e-eb35-4db4-9fa9-d6b45a9d092f) and have a Bing Maps account (ID 2006426) to use the previous Bing Maps Isochrone API and we have a paid developer support plan now. Specifically, we'd like to change our API requests from https://atlas.microsoft.com/route/range/json?api-version=1.0 (running successfully now) to https://atlas.microsoft.com/route/range/json?api-version=2024-07-01-preview and be able to set parameter isSimplifiedPolygon to true or false. Trying to do so now returns an "unauthorized" error message since it requires this access to be granted.

For reference:

Azure Maps resource name: mvmapsresource

Subscription ID: (d123273e-eb35-4db4-9fa9-d6b45a9d092f)

Please advise how we can gain access to this preview feature as soon as possible or if an updated preview or production alternative is now available.

Thank you!

Azure Maps
Azure Maps
An Azure service that provides geospatial APIs to add maps, spatial analytics, and mobility solutions to apps.
{count} votes

Accepted answer
  1. Faraz Siddiqui 420 Reputation points Microsoft Employee
    2025-07-25T01:29:43.9733333+00:00

    @Eliot MacDonald Route Range version 2024-07-01-preview and all other latest Route APIs uses POST requests and input params should be included in the request body. Please note the params names are different from the previous API version 1.0. Please refer to the API doc for complete spec.

    You Azure Maps account does need any additional resources to access the preview. If you are authenticating using subscription key, please include it in the request header. For example:

    Header
    Key: subscription-key
    Value: <<YourKey>>

    Endpoint
    POST https://atlas.microsoft.com/route/range?api-version=2024-07-01-preview

    {
      "type": "Feature",
      "geometry": {
         "type": "Point",
         "coordinates": [
           -111.88699784130823,
           40.67520040263743
         ]
      },
      "properties": {
        "departAt":"2025-07-25T21:00:00.000Z",
        "timebudgetinsec": 300,
        "isSimplifiedPolygon":false,
        "travelMode":"driving",
        "optimizeRoute":"fastestWithTraffic"
      }
    }
    
    2 people found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. rbrundritt 21,191 Reputation points Microsoft Employee Moderator
    2025-07-23T20:20:48.4233333+00:00

    Not sure a preview is available any longer, I'll ask the Azure Maps Product Group team.

    There was this thread recently that says that there are plans to have this generally available to all by the end of this year: https://learn.microsoft.com/en-us/answers/questions/2276495/isochrones-support-in-azure-maps


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.