Class: Aws::GeoPlaces::Types::FilterCircle
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::FilterCircle
- Defined in:
- gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
Overview
The Circle
that all results must be in.
Constant Summary collapse
- SENSITIVE =
[:center]
Instance Attribute Summary collapse
-
#center ⇒ Array<Float>
The center position, in longitude and latitude, of the
FilterCircle
. -
#radius ⇒ Integer
The radius, in meters, of the
FilterCircle
.
Instance Attribute Details
#center ⇒ Array<Float>
The center position, in longitude and latitude, of the
FilterCircle
.
821 822 823 824 825 826 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 821 class FilterCircle < Struct.new( :center, :radius) SENSITIVE = [:center] include Aws::Structure end |
#radius ⇒ Integer
The radius, in meters, of the FilterCircle
.
821 822 823 824 825 826 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 821 class FilterCircle < Struct.new( :center, :radius) SENSITIVE = [:center] include Aws::Structure end |