Class: Aws::LocationService::Types::Leg
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::Leg
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Contains the calculated route's details for each path between a pair of positions. 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.
Constant Summary collapse
- SENSITIVE =
[:start_position, :end_position, :distance, :duration_seconds]
Instance Attribute Summary collapse
-
#distance ⇒ Float
The distance between the leg's
StartPositionandEndPositionalong a calculated route. -
#duration_seconds ⇒ Float
The estimated travel time between the leg's
StartPositionandEndPosition. -
#end_position ⇒ Array<Float>
The terminating position of the leg.
-
#geometry ⇒ Types::LegGeometry
Contains the calculated route's path as a linestring geometry.
-
#start_position ⇒ Array<Float>
The starting position of the leg.
-
#steps ⇒ Array<Types::Step>
Contains a list of steps, which represent subsections of a leg.
Instance Attribute Details
#distance ⇒ Float
The distance between the leg's StartPosition and EndPosition
along a calculated route.
- The default measurement is
Kilometersunless the request specifies aDistanceUnitofMiles.
^
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4107 class Leg < Struct.new( :start_position, :end_position, :distance, :duration_seconds, :geometry, :steps) SENSITIVE = [:start_position, :end_position, :distance, :duration_seconds] include Aws::Structure end |
#duration_seconds ⇒ Float
The estimated travel time between the leg's StartPosition and
EndPosition. The travel mode and departure time that you specify
in the request determines the calculated time.
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4107 class Leg < Struct.new( :start_position, :end_position, :distance, :duration_seconds, :geometry, :steps) SENSITIVE = [:start_position, :end_position, :distance, :duration_seconds] include Aws::Structure end |
#end_position ⇒ Array<Float>
The terminating position of the leg. Follows the format
[longitude,latitude].
EndPosition isn't located on a road, it's snapped to a
nearby road.
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4107 class Leg < Struct.new( :start_position, :end_position, :distance, :duration_seconds, :geometry, :steps) SENSITIVE = [:start_position, :end_position, :distance, :duration_seconds] include Aws::Structure end |
#geometry ⇒ Types::LegGeometry
Contains the calculated route's path as a linestring geometry.
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4107 class Leg < Struct.new( :start_position, :end_position, :distance, :duration_seconds, :geometry, :steps) SENSITIVE = [:start_position, :end_position, :distance, :duration_seconds] include Aws::Structure end |
#start_position ⇒ Array<Float>
The starting position of the leg. Follows the format
[longitude,latitude].
StartPosition isn't located on a road, it's snapped to a
nearby road.
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4107 class Leg < Struct.new( :start_position, :end_position, :distance, :duration_seconds, :geometry, :steps) SENSITIVE = [:start_position, :end_position, :distance, :duration_seconds] include Aws::Structure end |
#steps ⇒ Array<Types::Step>
Contains a list of steps, which represent subsections of a leg. Each step provides instructions for how to move to the next step in the leg such as the step's start position, end position, travel distance, travel duration, and geometry offset.
4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4107 class Leg < Struct.new( :start_position, :end_position, :distance, :duration_seconds, :geometry, :steps) SENSITIVE = [:start_position, :end_position, :distance, :duration_seconds] include Aws::Structure end |