interface Route : Annotation
A base interface defining a route that can be added to the map.
abstract fun getCoordinates(): MutableList<LatLng!>
Gets the route points. |
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. |