Map Plugin Extensions Delegate
interface MapPluginExtensionsDelegate
Content copied to clipboard
Definition of the map plugin extensions delegate. Makes possible to call plugin functions directly from MapboxMap.
Functions
cameraAnimationsPlugin
Link copied to clipboard
abstract fun cameraAnimationsPlugin(function: CameraAnimationsPlugin.() -> Any?): Any?
Content copied to clipboard
Call extension function on CameraAnimationsPlugin.
gesturesPlugin
Link copied to clipboard
Inheritors
MapboxMap
Link copied to clipboard
Extensions
addOnFlingListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnFlingListener(onFlingListener: OnFlingListener)
Content copied to clipboard
addOnMapClickListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnMapClickListener(onMapClickListener: OnMapClickListener)
Content copied to clipboard
addOnMapLongClickListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnMapLongClickListener(onMapLongClickListener: OnMapLongClickListener)
Content copied to clipboard
addOnMoveListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnMoveListener(listener: OnMoveListener)
Content copied to clipboard
addOnRotateListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnRotateListener(listener: OnRotateListener)
Content copied to clipboard
addOnScaleListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnScaleListener(listener: OnScaleListener)
Content copied to clipboard
addOnShoveListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.addOnShoveListener(listener: OnShoveListener)
Content copied to clipboard
easeTo
Link copied to clipboard
@JvmOverloads()
Content copied to clipboard
Extension easeTo() for MapPluginExtensionsDelegate Ease the map camera to a given camera options and animation optionsCamera plugin with id = Plugin.MAPBOX_CAMERA_PLUGIN_ID must be added while constructing com.mapbox.maps.
flyTo
Link copied to clipboard
@JvmOverloads()
Content copied to clipboard
Extension flyTo() function for MapPluginExtensionsDelegate Fly the map camera to a given camera options.
getGesturesManager
Link copied to clipboard
fun MapPluginExtensionsDelegate.getGesturesManager(): AndroidGesturesManager?
Content copied to clipboard
getGesturesSettings
Link copied to clipboard
moveBy
Link copied to clipboard
@JvmOverloads()
Content copied to clipboard
Extension moveBy() function for MapPluginExtensionsDelegate Move the map by a given screen coordinate with optional animation.
pitchBy
Link copied to clipboard
@JvmOverloads()
Content copied to clipboard
Extension pitchBy() function for MapPluginExtensionsDelegate Pitch the map by with optional animation.
removeOnFlingListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnFlingListener(onFlingListener: OnFlingListener)
Content copied to clipboard
removeOnMapClickListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnMapClickListener(onMapClickListener: OnMapClickListener)
Content copied to clipboard
removeOnMapLongClickListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnMapLongClickListener(onMapLongClickListener: OnMapLongClickListener)
Content copied to clipboard
removeOnMoveListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnMoveListener(listener: OnMoveListener)
Content copied to clipboard
removeOnRotateListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnRotateListener(listener: OnRotateListener)
Content copied to clipboard
removeOnScaleListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnScaleListener(listener: OnScaleListener)
Content copied to clipboard
removeOnShoveListener
Link copied to clipboard
fun MapPluginExtensionsDelegate.removeOnShoveListener(listener: OnShoveListener)
Content copied to clipboard
rotateBy
Link copied to clipboard
@JvmOverloads()
Content copied to clipboard
Extension rotateBy() function for MapPluginExtensionsDelegate Rotate the map by with optional animation.
scaleBy
Link copied to clipboard
@JvmOverloads()
Content copied to clipboard
Extension scaleBy() function for MapPluginExtensionsDelegate Scale the map by with optional animation.
setGesturesManager
Link copied to clipboard
fun MapPluginExtensionsDelegate.setGesturesManager(androidGesturesManager: AndroidGesturesManager, attachDefaultListeners: Boolean, setDefaultMutuallyExclusives: Boolean)
Content copied to clipboard