interface Overlay : Annotation
A base interface defining map overlay (e.g., circle, polygon).
abstract fun getColor(): Int
Gets the color of the overlay in RGBA format. |
|
abstract fun getOpacity(): Float
Gets the opacity of the overlay. |
abstract fun getId(): Long
Gets the annotation Id. It is generated automatically when the annotation is added to the map. |
|
abstract fun getTag(): Any?
Gets the annotation tag. It can be used for filtering, e.g., to remove the annotation of a certain tag. Default value is set to null. |
interface Circle : Overlay, MapPoint
The base interface defining a circle that can be added to the map. |
|
interface Polygon : Overlay
A base interface defining polygon that can be added to the map. |
|
interface Polyline : Overlay
A base interface defining polyline that can be added to the map. |