# Modules.Map.Polygon
Represents a bounded area on the map.
# Overview
The Polygon
object gives you low-level control over polygons that can be added to a
Modules.Map.View. A polygon must have its points
property set to appear on a map.
Use the Modules.Map.createPolygon method to create a polygon.
# Properties
# fillColor
Color to use when shading the polygon, as a color name or hex triplet.
For information about color values, see the "Colors" section of Titanium.UI.
Default: black
# holes CREATION ONLY
Array of points arrays that define holes in the polygon.
# points CREATION ONLY
Array of map points making up the polygon. Can also be an array of longitude (index 0), latitude (index 1) touples.
# strokeColor
Color to use for the border of the polygon, 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 polygons.
For iOS, the polygons are drawn in the order in which they are added.