Polygon
data class Polygon(val points: List<LatLng>, val strokeColor: Int = Color.BLACK, val strokeWidth: Float = 10.0f, val fillColor: Int = Color.argb(128, 128, 128, 128), val holes: List<List<LatLng>> = emptyList(), val visible: Boolean = true, val clickable: Boolean = false, val zIndex: Float = 0.0f, val tag: Any? = null)(source)
Represents a polygon on the map, consisting of a closed shape with optional holes.