interface UiComponentsLayer
Interface that represents UI components added on top of the map (e.g. compass view).
abstract fun getCompassView(): CompassView!
Get compass view. |
|
abstract fun getCopyrightsView(): CopyrightsView!
Gets TomTom copyrights view. |
|
abstract fun getCurrentLocationView(): CurrentLocationView!
Get current location view. |
|
abstract fun getLogoView(): LogoView!
Gets TomTom logo view. |
|
abstract fun getMarkerBalloonsLayerView(): ViewGroup!
Get view group that is used to add marker balloons. |
|
abstract fun getPanningControlsView(): PanningControlsView!
Get controls to pan the map. |
|
abstract fun getZoomingControlsView(): ZoomingControlsView!
Gets controls to zoom in and zoom out the map. |
open class MapView : FrameLayout, UiComponentsLayer, UIMapSettings, SnapshotService
A view used to display a map. When you want to use this view directly, you need to pass forward all life cycle methods to this class (e.g., onPause, onResume). |