Class: Google::Apis::FusiontablesV2::Point
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FusiontablesV2::Point
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/fusiontables_v2/classes.rb,
 generated/google/apis/fusiontables_v2/representations.rb,
 generated/google/apis/fusiontables_v2/representations.rb
Overview
Represents a point object.
Instance Attribute Summary collapse
- 
  
    
      #coordinates  ⇒ Array<Float> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The coordinates that define the point. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Point: A point geometry. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Point 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Point. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Point
Returns a new instance of Point
| 393 394 395 | # File 'generated/google/apis/fusiontables_v2/classes.rb', line 393 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#coordinates ⇒ Array<Float>
The coordinates that define the point.
Corresponds to the JSON property coordinates
| 386 387 388 | # File 'generated/google/apis/fusiontables_v2/classes.rb', line 386 def coordinates @coordinates end | 
#type ⇒ String
Point: A point geometry.
Corresponds to the JSON property type
| 391 392 393 | # File 'generated/google/apis/fusiontables_v2/classes.rb', line 391 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 398 399 400 401 | # File 'generated/google/apis/fusiontables_v2/classes.rb', line 398 def update!(**args) @coordinates = args[:coordinates] if args.key?(:coordinates) @type = args[:type] if args.key?(:type) end |