public static interface

GoogleMap.OnMarkerDragListener

com.google.android.gms.maps.GoogleMap.OnMarkerDragListener

Class Overview

Callback interface for drag events on markers.

Listeners will be invoked on the Android UI thread.

Summary

Public Methods
abstract void onMarkerDrag(Marker marker)
Called repeatedly while a marker is being dragged.
abstract void onMarkerDragEnd(Marker marker)
Called when a marker has finished being dragged.
abstract void onMarkerDragStart(Marker marker)
Called when a marker starts being dragged.

Public Methods

public abstract void onMarkerDrag (Marker marker)

Called repeatedly while a marker is being dragged. The marker's location can be accessed via getPosition().

Parameters
marker Marker: The marker being dragged.

public abstract void onMarkerDragEnd (Marker marker)

Called when a marker has finished being dragged. The marker's location can be accessed via getPosition().

Parameters
marker Marker: The marker that was dragged.

public abstract void onMarkerDragStart (Marker marker)

Called when a marker starts being dragged. The marker's location can be accessed via getPosition(); this position may be different to the position prior to the start of the drag because the marker is popped up above the touch point.

Parameters
marker Marker: The marker being dragged.