-
public interface OnAnnotationDragListener<T extends Annotation>Generic interface definition of a callback to be invoked when an annotation is being dragged.
-
-
Method Summary
Modifier and Type Method Description abstract voidonAnnotationDragStarted(T annotation)Called when an annotation dragging has started. abstract voidonAnnotationDrag(T annotation)Called when an annotation dragging is in progress. abstract voidonAnnotationDragFinished(T annotation)Called when an annotation dragging has finished. -
-
Method Detail
-
onAnnotationDragStarted
abstract void onAnnotationDragStarted(T annotation)
Called when an annotation dragging has started.
- Parameters:
annotation- the annotation
-
onAnnotationDrag
abstract void onAnnotationDrag(T annotation)
Called when an annotation dragging is in progress.
- Parameters:
annotation- the annotation
-
onAnnotationDragFinished
abstract void onAnnotationDragFinished(T annotation)
Called when an annotation dragging has finished.
- Parameters:
annotation- the annotation
-
-
-
-