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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-locationservice/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.

Returns:

  • (Array<Float>)


4998
4999
5000
5001
5002
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 4998

class PlaceGeometry < Struct.new(
  :point)
  SENSITIVE = [:point]
  include Aws::Structure
end