interface OverlaySettings : TomtomMapCallback.OnMapTapListener, OverlaysCallbackExtension, Persistable
Settings for overlays manipulation. To obtain this interface, call TomtomMap#getOverlaySettings()
.
abstract fun addOverlay(overlay: Overlay!): Overlay!
Add new overlay to the map providing overlay options (e.g. type of the overlay and its tyle). |
|
abstract fun areOverlaysActive(): Boolean
True if any overlay are added to the map, false otherwise. |
|
abstract fun findOverlayByTag(tag: Serializable!): Optional<Overlay!>!
Find the overlay using it's tag |
|
abstract fun getOverlays(): MutableList<Overlay!>!
List of all overlays |
|
abstract fun removeOverlay(overlay: Overlay!): Unit
Remove specified overlay from the map. If the overlay is not found, no action happens. |
|
abstract fun removeOverlayByTag(name: String!): Unit
Find the overlay using its name and then remove it. |
|
abstract fun removeOverlays(): Unit
Remove all overlays from the map. |
abstract fun addOnCircleClickListener(listener: TomtomMapCallback.OnCircleClickListener!): Unit
Called to add a listener for circle clicks. |
|
abstract fun addOnPolygonClickListener(listener: TomtomMapCallback.OnPolygonClickListener!): Unit
Called to add a listener for polygon clicks. |
|
abstract fun addOnPolylineClickListener(listener: TomtomMapCallback.OnPolylineClickListener!): Unit
Called to add a listener for polygon clicks. |
|
abstract fun onMapLongTap(x: Float!, y: Float!): Unit
|
|
abstract fun onMapTap(x: Float!, y: Float!): Unit
|
|
abstract fun onViewStateRestored(savedState: MapState!): Unit
Called internally to restore state, e.g., when the app is resumed from the background. |
|
abstract fun onViewStateSave(outState: MapState!): Unit
Called internally to save state, e.g., when the app is going to the background. |
|
abstract fun removeOnCircleClickListener(listener: TomtomMapCallback.OnCircleClickListener!): Unit
Called to remove a listener for circle clicks. |
|
abstract fun removeOnCircleClickListeners(): Unit
Remove all registered circle click listeners. |
|
abstract fun removeOnPolygonClickListener(listener: TomtomMapCallback.OnPolygonClickListener!): Unit
Called to remove a listener for polygon clicks. |
|
abstract fun removeOnPolygonClickListeners(): Unit
Remove all registered polygon click listeners. |
|
abstract fun removeOnPolylineClickListener(listener: TomtomMapCallback.OnPolylineClickListener!): Unit
Called to remove a listener for polyline clicks. |
|
abstract fun removeOnPolylineClickListeners(): Unit
Remove all registered polyline click listeners. |