1.0.0-beta.3 • Published 7 days ago

@azure-rest/maps-route v1.0.0-beta.3

Weekly downloads
-
License
MIT
Repository
github
Last release
7 days ago

Azure MapsRoute client library for JavaScript/TypeScript

The Route Directions and Route Matrix APIs in Azure Maps Route Service can be used to calculate the estimated arrival times (ETAs) for each requested route. Route APIs consider factors such as real-time traffic information and historic traffic data, like the typical road speeds on the requested day of the week and time of day. The APIs return the shortest or fastest routes available to multiple destinations at a time in sequence or in optimized order, based on time or distance. Users can also request specialized routes and details for walkers, bicyclists, and commercial vehicles like trucks.

Please rely heavily on our REST client docs to use this library

Key links:

Getting started

Currently supported environments

Prerequisites

If you use Azure CLI, replace <resource-group-name> and <map-account-name> of your choice, and select a proper pricing tier based on your needs via the <sku-name> parameter. Please refer to this page for more details.

Install the @azure-rest/maps-route package

Install the Azure MapsRoute client REST client library for JavaScript with npm:

npm install @azure-rest/maps-route

Create and authenticate a MapsRouteClient

To create a client object to access the Azure Maps Route APIs, you will need a credential object. The Azure Maps Route client can use an Azure Active Directory credential or an Azure Key credential to authenticate.

Using an Azure Active Directory Credential

You can authenticate with Azure Active Directory using the Azure Identity library. To use the DefaultAzureCredential provider shown below, or other credential providers provided with the Azure SDK, please install the @azure/identity package:

npm install @azure/identity

You will also need to register a new AAD application and grant access to Azure Maps by assigning the suitable role to your service principal. Please refer to the Manage authentication page.

Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET.

You will also need to specify the Azure Maps resource you intend to use by specifying the clientId in the client options. The Azure Maps resource client id can be found in the Authentication sections in the Azure Maps resource. Please refer to the documentation on how to find it.

const MapsRoute = require("@azure-rest/maps-route").default;
const { DefaultAzureCredential } = require("@azure/identity");

const credential = new DefaultAzureCredential();
const client = MapsRoute(credential, "<maps-account-client-id>");

Using a Subscription Key Credential

You can authenticate with your Azure Maps Subscription Key.

const MapsRoute = require("@azure-rest/maps-route").default;
const { AzureKeyCredential } = require("@azure/core-auth");

const credential = new AzureKeyCredential("<subscription-key>");
const client = MapsRoute(credential);

Examples

The following sections provide several code snippets covering some of the most common Azure Maps Route tasks, including:

Request historic and real-time data

By default, the Route service assumes the traveling mode is a car and the departure time is now. It returns route based on real-time traffic conditions unless a route calculation request specifies otherwise.

To retrieve the route direction, you need to pass in the parameters the coordinates through which the route is calculated, delimited by a colon. A minimum of two coordinates are required. The first one is the origin and the last is the destination of the route.

By default, the Route service will return an array of coordinates. The response will contain the coordinates that make up the path in a list named points. Route response also includes the distance from the start of the route and the estimated elapsed time. These values can be used to calculate the average speed for the entire route.

const routeDirectionsResult = await client.path("/route/directions/{format}", "json").get({
  queryParameters: {
    query: "51.368752,-0.118332:41.385426,-0.128929",
  },
});

// You can use the helper function `toColonDelimitedLatLonString` to compose the query string.
const { toColonDelimitedLatLonString } = require("@azure-rest/maps-route");
const routeDirectionsResult = await client.path("/route/directions/{format}", "json").get({
  queryParameters: {
    query: toColonDelimitedLatLonString([
      // Origin:
      [51.368752, -0.118332],
      // Waypoints (Optional):
      [45.49735, 9.182435],
      [48.886128, 2.329742],
      [48.159642, 11.518011],
      // Destination:
      [41.385426, -0.128929],
    ]),
  },
});

// Handle the error if the request failed
if (isUnexpected(routeDirectionsResult)) {
  throw routeDirectionsResult.body.error;
}

routeDirectionsResult.body.routes.forEach(({ summary, legs }) => {
  console.log(
    `The total distance is ${summary.lengthInMeters} meters, and it takes ${summary.travelTimeInSeconds} seconds.`
  );
  legs.forEach(({ summary, points }, idx) => {
    console.log(
      `The ${idx + 1}th leg's length is ${summary.lengthInMeters} meters, and it takes ${
        summary.travelTimeInSeconds
      } seconds. Followings are the first 10 points: `
    );
    console.table(points.slice(0, 10));
  });
});

Request a route for a commercial vehicle

The service supports commercial vehicle routing, covering commercial trucks routing. The APIs consider specified limits. Such as, the height and weight of the vehicle, and if the vehicle is carrying hazardous cargo. For example, if a vehicle is carrying flammable, the routing engine avoid certain tunnels that are near residential areas.

const routeDirectionsResult = await client.path("/route/directions/{format}", "json").get({
  queryParameters: {
    query: toColonDelimitedLatLonString([
      // Origin
      [51.368752, -0.118332],
      // Waypoints (Optional):
      [45.49735, 9.182435],
      [48.886128, 2.329742],
      [48.159642, 11.518011],
      // Destination:
      [41.385426, -0.128929],
    ]),
    vehicleWidthInMeters: 2,
    vehicleHeightInMeters: 2,
    vehicleLoadType: "USHazmatClass1",
    travelMode: "truck",
    isCommercialVehicle: true,
  },
});

if (isUnexpected(routeDirectionsResult)) {
  throw routeDirectionsResult.body.error;
}

routeDirectionsResult.body.routes.forEach(({ summary, legs }) => {
  console.log(
    `The total distance is ${summary.lengthInMeters} meters, and it takes ${summary.travelTimeInSeconds} seconds.`
  );
  legs.forEach(({ summary, points }, idx) => {
    console.log(
      `The ${idx + 1}th leg's length is ${summary.lengthInMeters} meters, and it takes ${
        summary.travelTimeInSeconds
      } seconds. Followings are the first 10 points: `
    );
    console.table(points.slice(0, 10));
  });
});

Calculate and optimize a multi-stop route

Azure Maps currently provides two forms of route optimizations:

  • Optimizations based on the requested route type, without changing the order of waypoints. You can find the supported route types here.
  • Traveling salesman optimization, which changes the order of the waypoints to obtain the best order to visit each stop

For multi-stop routing, up to 150 waypoints may be specified in a single route request. The starting and ending coordinate locations can be the same, as would be the case with a round trip. But you need to provide at least one additional waypoint to make the route calculation. Waypoints can be added to the query in-between the origin and destination coordinates.

If you want to optimize the best order to visit the given waypoints, then you need to specify computeBestWaypointOrder=true. This scenario is also known as the traveling salesman optimization problem.

const routeDirectionsResult = await client.path("/route/directions/{format}", "json").get({
  queryParameters: {
    query: toColonDelimitedLatLonString([
      // Origin:
      [51.368752, -0.118332],
      // Waypoints:
      [45.49735, 9.182435],
      [48.886128, 2.329742],
      [48.159642, 11.518011],
      // Destination:
      [41.385426, -0.128929],
    ]),
    computeBestWaypointOrder: true,
    routeType: "shortest",
  },
});

if (isUnexpected(routeDirectionsResult)) {
  throw routeDirectionsResult.body.error;
}

const { summary } = routeDirectionsResult.body.routes;
console.log(
  `The optimized distance is ${summary.lengthInMeters} meters, and it takes ${summary.travelTimeInSeconds} seconds.`
);
console.log("The route is optimized by: ");
routeDirectionsResult.body.optimizedWaypoints.forEach(
  ({ providedIndex, optimizedIndex }) => `Moving index ${providedIndex} to ${optimizedIndex}`
);

Troubleshooting

Logging

Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the AZURE_LOG_LEVEL environment variable to info. Alternatively, logging can be enabled at runtime by calling setLogLevel in the @azure/logger:

const { setLogLevel } = require("@azure/logger");

setLogLevel("info");

For more detailed instructions on how to enable logs, you can look at the @azure/logger package docs.

Next steps

Please take a look at the samples directory for detailed examples on how to use this library.

Contributing

If you'd like to contribute to this library, please read the contributing guide to learn more about how to build and test the code.

Related projects

Impressions