Class: Google::Apis::FusiontablesV1::Point

Inherits:
Object
  • Object
show all
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 point object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Point

Returns a new instance of Point



337
338
339
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 337

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#coordinatesArray<Float>

The coordinates that define the point. Corresponds to the JSON property coordinates

Returns:

  • (Array<Float>)


330
331
332
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 330

def coordinates
  @coordinates
end

#typeString

Point: A point geometry. Corresponds to the JSON property type

Returns:

  • (String)


335
336
337
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 335

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



342
343
344
345
# File 'generated/google/apis/fusiontables_v1/classes.rb', line 342

def update!(**args)
  @coordinates = args[:coordinates] if args.key?(:coordinates)
  @type = args[:type] if args.key?(:type)
end