Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CalculateRouteRequest

import type { CalculateRouteRequest } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";
interface CalculateRouteRequest {
CalculatorName: string;
CarModeOptions?: CalculateRouteCarModeOptions | null;
DepartNow?: boolean | null;
DeparturePosition: number[];
DepartureTime?: Date | number | null;
DestinationPosition: number[];
DistanceUnit?: DistanceUnit | null;
IncludeLegGeometry?: boolean | null;
TravelMode?: TravelMode | null;
TruckModeOptions?: CalculateRouteTruckModeOptions | null;
WaypointPositions?: number[][] | null;
}

§Properties

§
CalculatorName: string
[src]

The name of the route calculator resource that you want to use to calculate the route.

§
CarModeOptions?: CalculateRouteCarModeOptions | null
[src]

Specifies route preferences when traveling by Car, such as avoiding routes that use ferries or tolls.

Requirements: TravelMode must be specified as Car.

§
DepartNow?: boolean | null
[src]

Sets the time of departure as the current time. Uses the current time to calculate a route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.

Default Value: false

Valid Values: false | true

§
DeparturePosition: number[]
[src]

The start position for the route. Defined in WGS 84 format: [longitude, latitude].

  • For example, [-123.115, 49.285]

Note: If you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException error.

Valid Values: [-180 to 180,-90 to 90]

§
DepartureTime?: Date | number | null
[src]

Specifies the desired time of departure. Uses the given time to calculate the route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.

Note: Setting a departure time in the past returns a 400 ValidationException error.

  • In ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. For example, 2020–07-2T12:15:20.000Z+01:00
§
DestinationPosition: number[]
[src]

The finish position for the route. Defined in WGS 84 format: [longitude, latitude].

  • For example, [-122.339, 47.615]

Note: If you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road.

Valid Values: [-180 to 180,-90 to 90]

§
DistanceUnit?: DistanceUnit | null
[src]

Set the unit system to specify the distance.

Default Value: Kilometers

§
IncludeLegGeometry?: boolean | null
[src]

Set to include the geometry details in the result for each path between a pair of positions.

Default Value: false

Valid Values: false | true

§
TravelMode?: TravelMode | null
[src]

Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.

The TravelMode you specify also determines how you specify route preferences:

  • If traveling by Car use the CarModeOptions parameter.
  • If traveling by Truck use the TruckModeOptions parameter.

Default Value: Car

§
TruckModeOptions?: CalculateRouteTruckModeOptions | null
[src]

Specifies route preferences when traveling by Truck, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.

Requirements: TravelMode must be specified as Truck.

§
WaypointPositions?: number[][] | null
[src]

Specifies an ordered list of up to 23 intermediate positions to include along a route between the departure position and destination position.

  • For example, from the DeparturePosition [-123.115, 49.285], the route follows the order that the waypoint positions are given [[-122.757, 49.0021],[-122.349, 47.620]]

Note: If you specify a waypoint position that's not located on a road, Amazon Location moves the position to the nearest road. Specifying more than 23 waypoints returns a 400 ValidationException error. If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException error.

Valid Values: [-180 to 180,-90 to 90]