Class: Aws::GeoRoutes::Types::IsolineConnectionGeometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineConnectionGeometry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Geometry of the connection between different Isoline components.
Constant Summary collapse
- SENSITIVE =
[:line_string, :polyline]
Instance Attribute Summary collapse
-
#line_string ⇒ Array<Array<Float>>
An ordered list of positions used to plot a route on a map.
-
#polyline ⇒ String
An ordered list of positions used to plot a route on a map in a lossy compression format.
Instance Attribute Details
#line_string ⇒ Array<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>
969 970 971 972 973 974 |
# File 'lib/aws-sdk-georoutes/types.rb', line 969 class IsolineConnectionGeometry < Struct.new( :line_string, :polyline) SENSITIVE = [:line_string, :polyline] include Aws::Structure end |
#polyline ⇒ String
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>
969 970 971 972 973 974 |
# File 'lib/aws-sdk-georoutes/types.rb', line 969 class IsolineConnectionGeometry < Struct.new( :line_string, :polyline) SENSITIVE = [:line_string, :polyline] include Aws::Structure end |