OnAnnotationDragListener

interface OnAnnotationDragListener<out T : Annotation<*>>

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

Parameters

<T> generic parameter extending from Annotation

Functions

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
onAnnotationDrag
Link copied to clipboard
abstract fun onAnnotationDrag(annotation: Annotation<*>)
Called when an annotation dragging is in progress.
onAnnotationDragFinished
Link copied to clipboard
abstract fun onAnnotationDragFinished(annotation: Annotation<*>)
Called when an annotation dragging has finished.
onAnnotationDragStarted
Link copied to clipboard
abstract fun onAnnotationDragStarted(annotation: Annotation<*>)
Called when an annotation dragging has started.
toString
Link copied to clipboard
open fun toString(): String

Inheritors

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