Class: Aws::GeoRoutes::Types::IsolineDestinationOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-georoutes/types.rb

Overview

Options that control how the destination point is interpreted and matched to the road network when calculating reachable areas. This affects which roads are considered accessible near the destination and how the final approach is calculated.

Constant Summary collapse

SENSITIVE =
[:avoid_actions_for_distance, :heading]

Instance Attribute Summary collapse

Instance Attribute Details

#avoid_actions_for_distanceInteger

The distance in meters from the destination point within which certain routing actions (such as U-turns or left turns across traffic) are restricted. This helps generate more practical routes by avoiding potentially dangerous maneuvers near the endpoint.

Returns:

  • (Integer)


1389
1390
1391
1392
1393
1394
1395
1396
# File 'lib/aws-sdk-georoutes/types.rb', line 1389

class IsolineDestinationOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end

#headingFloat

The initial direction of travel in degrees (0-360, where 0 is north). This can affect which road segments are considered accessible from the starting point.

Returns:

  • (Float)


1389
1390
1391
1392
1393
1394
1395
1396
# File 'lib/aws-sdk-georoutes/types.rb', line 1389

class IsolineDestinationOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end

#matchingTypes::IsolineMatchingOptions

Controls how the destination point is matched to the road network, including search radius and name-based matching preferences.



1389
1390
1391
1392
1393
1394
1395
1396
# File 'lib/aws-sdk-georoutes/types.rb', line 1389

class IsolineDestinationOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end

#side_of_streetTypes::IsolineSideOfStreetOptions

Specifies which side of the street should be considered accessible, which is important when building entrances or parking access points are only reachable from one side of the road.



1389
1390
1391
1392
1393
1394
1395
1396
# File 'lib/aws-sdk-georoutes/types.rb', line 1389

class IsolineDestinationOptions < Struct.new(
  :avoid_actions_for_distance,
  :heading,
  :matching,
  :side_of_street)
  SENSITIVE = [:avoid_actions_for_distance, :heading]
  include Aws::Structure
end