Interface OnAnnotationDragListener<T extends Annotation>
-
- Type Parameters:
T- generic parameter extending from Annotation
- All Known Subinterfaces:
OnCircleDragListener,OnFillDragListener,OnLineDragListener,OnSymbolDragListener
public interface OnAnnotationDragListener<T extends Annotation>Generic interface definition of a callback to be invoked when an annotation is being dragged.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAnnotationDrag(T annotation)Called when an annotation dragging is in progress.voidonAnnotationDragFinished(T annotation)Called when an annotation dragging has finished.voidonAnnotationDragStarted(T annotation)Called when an annotation dragging has started.
-
-
-
Method Detail
-
onAnnotationDragStarted
void onAnnotationDragStarted(T annotation)
Called when an annotation dragging has started.- Parameters:
annotation- the annotation
-
onAnnotationDrag
void onAnnotationDrag(T annotation)
Called when an annotation dragging is in progress.- Parameters:
annotation- the annotation
-
onAnnotationDragFinished
void onAnnotationDragFinished(T annotation)
Called when an annotation dragging has finished.- Parameters:
annotation- the annotation
-
-