Class: Aws::LocationService::Types::CalculateRouteResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::CalculateRouteResponse
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Returns the result of the route calculation. Metadata includes legs and route summary.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#legs ⇒ Array<Types::Leg>
Contains details about each path between a pair of positions included along a route such as:
StartPosition,EndPosition,Distance,DurationSeconds,Geometry, andSteps. -
#summary ⇒ Types::CalculateRouteSummary
Contains information about the whole route, such as:
RouteBBox,DataSource,Distance,DistanceUnit, andDurationSeconds.
Instance Attribute Details
#legs ⇒ Array<Types::Leg>
Contains details about each path between a pair of positions
included along a route such as: StartPosition, EndPosition,
Distance, DurationSeconds, Geometry, and Steps. The number
of legs returned corresponds to one fewer than the total number of
positions in the request.
For example, a route with a departure position and destination position returns one leg with the positions snapped to a nearby road:
The
StartPositionis the departure position.The
EndPositionis the destination position.
A route with a waypoint between the departure and destination position returns two legs with the positions snapped to a nearby road:
Leg 1: The
StartPositionis the departure position . TheEndPositionis the waypoint positon.Leg 2: The
StartPositionis the waypoint position. TheEndPositionis the destination position.
1233 1234 1235 1236 1237 1238 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 1233 class CalculateRouteResponse < Struct.new( :legs, :summary) SENSITIVE = [] include Aws::Structure end |
#summary ⇒ Types::CalculateRouteSummary
Contains information about the whole route, such as: RouteBBox,
DataSource, Distance, DistanceUnit, and DurationSeconds.
1233 1234 1235 1236 1237 1238 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 1233 class CalculateRouteResponse < Struct.new( :legs, :summary) SENSITIVE = [] include Aws::Structure end |