# Modules.Map.Circle
Represents a bounded area on the map.
# Overview
The Circle
object gives you low-level control over circles that can be added to a
Modules.Map.View. A circle must have a center
property and a radius
set to appear on a map.
Use the Modules.Map.createCircle method to create a circle.
# Properties
# center CREATION ONLY
An object with longitude and latitude values. Can also be an array with longitude (index 0), latitude (index 1) touples.
# fillColor
Color to use when shading the circle, as a color name or hex triplet.
For information about color values, see the "Colors" section of Titanium.UI.
Default: black
# opacity
Opacity of this map circle, from 0.0 (transparent) to 1.0 (opaque).
Default: 1.0 (opaque)
# radius CREATION ONLY
The radius of the circle, specified in meters. It should be zero or greater.
# strokeColor
Color to use for the border of the circle, as a color name or hex triplet.
For information about color values, see the "Colors" section of Titanium.UI.
Default: black
# touchEnabled
Determines whether view should receive touch events.
Default: true
# zIndex CREATION ONLY
The order (depth) in which to display the circles.
For iOS, the circles are drawn in the order in which they are added.