Class: Aws::LocationService::Types::PlaceGeometry
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LocationService::Types::PlaceGeometry
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-locationservice/types.rb
 
Overview
Places uses a point geometry to specify a location or a Place.
Constant Summary collapse
- SENSITIVE =
 [:point]
Instance Attribute Summary collapse
- 
  
    
      #point  ⇒ Array<Float> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A single point geometry specifies a location for a Place using [WGS 84] coordinates:.
 
Instance Attribute Details
#point ⇒ Array<Float>
A single point geometry specifies a location for a Place using [WGS 84] coordinates:
- 
x — Specifies the x coordinate or longitude.
 - 
y — Specifies the y coordinate or latitude.
 
      5350 5351 5352 5353 5354  | 
    
      # File 'lib/aws-sdk-locationservice/types.rb', line 5350 class PlaceGeometry < Struct.new( :point) SENSITIVE = [:point] include Aws::Structure end  |