Class: Aws::LocationService::Types::PlaceGeometry

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#pointArray<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.

[1]: gisgeography.com/wgs84-world-geodetic-system/

Returns:

  • (Array<Float>)


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