Class: Google::Apis::FusiontablesV1::Line
- Inherits:
-
Object
- Object
- Google::Apis::FusiontablesV1::Line
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/fusiontables_v1/classes.rb,
generated/google/apis/fusiontables_v1/representations.rb,
generated/google/apis/fusiontables_v1/representations.rb
Overview
Represents a line geometry.
Instance Attribute Summary collapse
-
#coordinates ⇒ Array<Array<Float>>
The coordinates that define the line.
-
#type ⇒ String
Type: A line geometry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Line
constructor
A new instance of Line.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Line
Returns a new instance of Line
269 270 271 |
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 269 def initialize(**args) update!(**args) end |
Instance Attribute Details
#coordinates ⇒ Array<Array<Float>>
The coordinates that define the line.
Corresponds to the JSON property coordinates
262 263 264 |
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 262 def coordinates @coordinates end |
#type ⇒ String
Type: A line geometry.
Corresponds to the JSON property type
267 268 269 |
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 267 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
274 275 276 277 |
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 274 def update!(**args) @coordinates = args[:coordinates] if args.key?(:coordinates) @type = args[:type] if args.key?(:type) end |