Class: Aws::GeoPlaces::Types::FilterCircle

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

Instance Attribute Details

#centerArray<Float>

The center position, in longitude and latitude, of the FilterCircle.

Returns:

  • (Array<Float>)


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

#radiusInteger

The radius, in meters, of the FilterCircle.

Returns:

  • (Integer)


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