public static interface MapMarker.OnDragListener
MapMarker
objects.Modifier and Type | Method and Description |
---|---|
void |
onMarkerDrag(MapMarker marker)
Called repeatedly while a marker is being dragged.
|
void |
onMarkerDragEnd(MapMarker marker)
Called when a marker has finished being dragged.
|
void |
onMarkerDragStart(MapMarker marker)
Called when a marker starts being dragged.
|
void onMarkerDrag(MapMarker marker)
MapMarker
's location can
be accessed through getCoordinate().marker
- The MapMarker
that is being dragged.void onMarkerDragEnd(MapMarker marker)
MapMarker
's location can be
accessed through getCoordinate().marker
- The MapMarker
that is being dragged.void onMarkerDragStart(MapMarker marker)
MapMarker
's location can be
accessed via getCoordinate(). 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.marker
- The MapMarker
that is being dragged.