OnAnnotationDragListener

Generic interface definition of a callback to be invoked when an annotation is being dragged.

interface OnAnnotationDragListener<out T : Annotation<*>>

Parameters

<T> generic parameter extending from Annotation

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
onAnnotationDrag
Link copied to clipboard

Called when an annotation dragging is in progress.

abstract fun onAnnotationDrag(annotation: Annotation<*>)
onAnnotationDragFinished
Link copied to clipboard

Called when an annotation dragging has finished.

abstract fun onAnnotationDragFinished(annotation: Annotation<*>)
onAnnotationDragStarted
Link copied to clipboard

Called when an annotation dragging has started.

abstract fun onAnnotationDragStarted(annotation: Annotation<*>)
toString
Link copied to clipboard
open override fun toString(): String

Inheritors

OnCircleAnnotationDragListener
Link copied to clipboard
OnPointAnnotationDragListener
Link copied to clipboard
OnPolygonAnnotationDragListener
Link copied to clipboard
OnPolylineAnnotationDragListener
Link copied to clipboard