Class: Aws::GeoRoutes::Types::RoadSnapSnappedGeometry

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

Overview

Interpolated geometry for the snapped route that is overlay-able onto a map.

Constant Summary collapse

SENSITIVE =
[:line_string, :polyline]

Instance Attribute Summary collapse

Instance Attribute Details

#line_stringArray<Array<Float>>

An ordered list of positions used to plot a route on a map.

<note markdown=“1”> LineString and Polyline are mutually exclusive properties.

</note>

Returns:

  • (Array<Array<Float>>)


1694
1695
1696
1697
1698
1699
# File 'lib/aws-sdk-georoutes/types.rb', line 1694

class RoadSnapSnappedGeometry < Struct.new(
  :line_string,
  :polyline)
  SENSITIVE = [:line_string, :polyline]
  include Aws::Structure
end

#polylineString

An ordered list of positions used to plot a route on a map in a lossy compression format.

<note markdown=“1”> LineString and Polyline are mutually exclusive properties.

</note>

Returns:

  • (String)


1694
1695
1696
1697
1698
1699
# File 'lib/aws-sdk-georoutes/types.rb', line 1694

class RoadSnapSnappedGeometry < Struct.new(
  :line_string,
  :polyline)
  SENSITIVE = [:line_string, :polyline]
  include Aws::Structure
end