public interface MapViewEventListener
| Modifier and Type | Interface and Description |
|---|---|
static class |
MapViewEventListener.MapLoadStatus
This is the map load status Enum
|
static class |
MapViewEventListener.TouchEvent
This is the touch event type Enum.
|
| Modifier and Type | Method and Description |
|---|---|
void |
annotationWasTapped(Annotation.TouchType touchType,
Annotation annotation)
This mehod is triggered if some annotation was clicked.
|
void |
mapDidZoom(float zoomLevel)
This methods is triggered when the map zooming is finished.
|
void |
mapIsPanning()
This method is triggered when the map is panning by the user.
|
void |
mapIsZooming()
This method is triggered when the map is zooming.
|
void |
mapLoadStatusChanged(MapViewEventListener.MapLoadStatus mapLoadStatus)
This method is triggered when the map load status changes.
|
boolean |
mapWasTappedAtLocation(android.location.Location location)
This method is triggered if the user presses in the map view.
|
void mapLoadStatusChanged(MapViewEventListener.MapLoadStatus mapLoadStatus)
mapLoadStatus - event that triggered the status changevoid mapIsPanning()
void mapIsZooming()
void mapDidZoom(float zoomLevel)
zoomLevel - the final zoom levelvoid annotationWasTapped(Annotation.TouchType touchType, Annotation annotation)
annotation - the annotation was clickedboolean mapWasTappedAtLocation(android.location.Location location)
location - latitude/longitude of the pressed location