Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Use CalculateRoute with an AWS SDK

Focus mode
Use CalculateRoute with an AWS SDK - AWS SDK Code Examples

There are more AWS SDK examples available in the AWS Doc SDK Examples GitHub repo.

There are more AWS SDK examples available in the AWS Doc SDK Examples GitHub repo.

The following code example shows how to use CalculateRoute.

Java
SDK for Java 2.x
Note

There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository.

/** * Calculates the distance between two locations asynchronously. * * @param routeCalcName the name of the route calculator to use * @return a {@link CompletableFuture} that will complete with a {@link CalculateRouteResponse} containing the distance and estimated duration of the route */ public CompletableFuture<CalculateRouteResponse> calcDistanceAsync(String routeCalcName) { // Define coordinates for Seattle, WA and Vancouver, BC. List<Double> departurePosition = Arrays.asList(-122.3321, 47.6062); List<Double> arrivePosition = Arrays.asList(-123.1216, 49.2827); CalculateRouteRequest request = CalculateRouteRequest.builder() .calculatorName(routeCalcName) .departurePosition(departurePosition) .destinationPosition(arrivePosition) .travelMode("Car") // Options: Car, Truck, Walking, Bicycle .distanceUnit("Kilometers") // Options: Meters, Kilometers, Miles .build(); return getClient().calculateRoute(request) .whenComplete((response, exception) -> { if (exception != null) { Throwable cause = exception.getCause(); if (cause instanceof ResourceNotFoundException) { throw new CompletionException("The AWS resource was not found: " + cause.getMessage(), cause); } throw new CompletionException("Failed to calculate route: " + exception.getMessage(), exception); } }); }
  • For API details, see CalculateRoute in AWS SDK for Java 2.x API Reference.

SDK for Java 2.x
Note

There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository.

/** * Calculates the distance between two locations asynchronously. * * @param routeCalcName the name of the route calculator to use * @return a {@link CompletableFuture} that will complete with a {@link CalculateRouteResponse} containing the distance and estimated duration of the route */ public CompletableFuture<CalculateRouteResponse> calcDistanceAsync(String routeCalcName) { // Define coordinates for Seattle, WA and Vancouver, BC. List<Double> departurePosition = Arrays.asList(-122.3321, 47.6062); List<Double> arrivePosition = Arrays.asList(-123.1216, 49.2827); CalculateRouteRequest request = CalculateRouteRequest.builder() .calculatorName(routeCalcName) .departurePosition(departurePosition) .destinationPosition(arrivePosition) .travelMode("Car") // Options: Car, Truck, Walking, Bicycle .distanceUnit("Kilometers") // Options: Meters, Kilometers, Miles .build(); return getClient().calculateRoute(request) .whenComplete((response, exception) -> { if (exception != null) { Throwable cause = exception.getCause(); if (cause instanceof ResourceNotFoundException) { throw new CompletionException("The AWS resource was not found: " + cause.getMessage(), cause); } throw new CompletionException("Failed to calculate route: " + exception.getMessage(), exception); } }); }
  • For API details, see CalculateRoute in AWS SDK for Java 2.x API Reference.

PrivacySite termsCookie preferences
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.