Package 

Interface OnAnnotationDragListener

    • Method Summary

      Modifier and Type Method Description
      abstract void onAnnotationDragStarted(T annotation) Called when an annotation dragging has started.
      abstract void onAnnotationDrag(T annotation) Called when an annotation dragging is in progress.
      abstract void onAnnotationDragFinished(T annotation) Called when an annotation dragging has finished.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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