Class: Aws::LocationService::Types::Circle
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::Circle
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
A circle on the earth, as defined by a center point and a radius.
Constant Summary collapse
- SENSITIVE =
[:center]
Instance Attribute Summary collapse
-
#center ⇒ Array<Float>
A single point geometry, specifying the center of the circle, using [WGS 84][1] coordinates, in the form
[longitude, latitude]
. -
#radius ⇒ Float
The radius of the circle in meters.
Instance Attribute Details
#center ⇒ Array<Float>
A single point geometry, specifying the center of the circle, using
WGS 84 coordinates, in the form [longitude, latitude]
.
1298 1299 1300 1301 1302 1303 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 1298 class Circle < Struct.new( :center, :radius) SENSITIVE = [:center] include Aws::Structure end |
#radius ⇒ Float
The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).
1298 1299 1300 1301 1302 1303 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 1298 class Circle < Struct.new( :center, :radius) SENSITIVE = [:center] include Aws::Structure end |