Class: Aws::GeoRoutes::Types::Circle
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::Circle
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-georoutes/types.rb
Overview
Geometry defined as a circle. When request routing boundary was set as ‘AutoCircle`, the response routing boundary will return `Circle` derived from the `AutoCircle` settings.
Constant Summary collapse
- SENSITIVE =
[:center, :radius]
Instance Attribute Summary collapse
-
#center ⇒ Array<Float>
Center of the Circle defined in longitude and latitude coordinates.
-
#radius ⇒ Float
Radius of the Circle.
Instance Attribute Details
#center ⇒ Array<Float>
Center of the Circle defined in longitude and latitude coordinates.
Example: ‘[-123.1174, 49.2847]` represents the position with longitude `-123.1174` and latitude `49.2847`.
656 657 658 659 660 661 |
# File 'lib/aws-sdk-georoutes/types.rb', line 656 class Circle < Struct.new( :center, :radius) SENSITIVE = [:center, :radius] include Aws::Structure end |