Class: Aws::GeoRoutes::Types::IsolineSideOfStreetOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineSideOfStreetOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Controls how points are matched to specific sides of streets. This is important when the side of the street matters for accessibility - for example, when building entrances or parking lot access points can only be reached from one side of a divided road.
Constant Summary collapse
- SENSITIVE =
[:position]
Instance Attribute Summary collapse
-
#position ⇒ Array<Float>
The ‘[longitude, latitude]` coordinates of the point that should be matched to a specific side of the street.
-
#use_with ⇒ String
Controls whether side-of-street matching is applied to any street (‘AnyStreet`) or only to divided roads (`DividedStreetOnly`).
Instance Attribute Details
#position ⇒ Array<Float>
The ‘[longitude, latitude]` coordinates of the point that should be matched to a specific side of the street.
1575 1576 1577 1578 1579 1580 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1575 class IsolineSideOfStreetOptions < Struct.new( :position, :use_with) SENSITIVE = [:position] include Aws::Structure end |
#use_with ⇒ String
Controls whether side-of-street matching is applied to any street (‘AnyStreet`) or only to divided roads (`DividedStreetOnly`). This is important when the exact side of the street matters - for example, if a building entrance is only accessible from one side of a divided highway, or if a parking lot can only be entered from northbound lanes. Without correct side-of-street matching, travel time estimates may be inaccurate because they don’t account for necessary U-turns or detours to reach the correct side.
Default value: ‘DividedStreetOnly`
1575 1576 1577 1578 1579 1580 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1575 class IsolineSideOfStreetOptions < Struct.new( :position, :use_with) SENSITIVE = [:position] include Aws::Structure end |