class CircleBuilder
Circle overlay for the map.
fun build(): Circle
Create circle overlay for a given map view. |
|
fun color(color: Int): CircleBuilder
The color in RGBA format of the overlay |
|
fun fill(fill: Boolean): CircleBuilder
Specifies if the circle should be filled. |
|
fun id(id: Long): CircleBuilder
The id of the Overlay. It is unique value which distinguish overlays. |
|
fun opacity(opacity: Float): CircleBuilder
Overlay opacity. Must be between 0.0 and 1.0. |
|
fun outlineColor(outlineColor: Int): CircleBuilder
Specifies the circles outline color. |
|
fun position(position: LatLng): CircleBuilder
Center of the circle overlay. |
|
fun radius(radius: Double): CircleBuilder
Circle radius in meters. Must be greater than 0. |
|
fun tag(tag: Any): CircleBuilder
It can be used for filtering, e.g. to remove annotation of certain tag. |
|
fun width(width: Float): CircleBuilder
Width of the Circle in pixels. |
fun create(): CircleBuilder
Creates a new instance of CircleBuilder. |