public interface MapViewEventListener
| Modifier and Type | Interface and Description |
|---|---|
static class |
MapViewEventListener.MapLoadStatus |
static class |
MapViewEventListener.TouchEvent |
| Modifier and Type | Method and Description |
|---|---|
void |
annotationWasTapped(Annotation.TouchType touchType,
Annotation annotation)
Will be triggered if some annotation was clicked
|
void |
annotationWasTapped(Annotation.TouchType touchType,
String popupText)
Will be triggered if some annotation was clicked
|
void |
mapDidZoom(float zoomLevel) |
void |
mapIsPanning() |
void |
mapIsZooming() |
void |
mapLoadStatusChanged(MapViewEventListener.MapLoadStatus mapLoadStatus)
Will be triggered when map load status changes
|
void |
mapWasLongPress(android.location.Location location) |
boolean |
mapWasTappedAtLocation(android.location.Location location)
Will be triggered if user Long Press in the mapView,
|
void |
setAddAnnotation(android.location.Location location) |
void mapLoadStatusChanged(MapViewEventListener.MapLoadStatus mapLoadStatus)
mapLoadStatus - event that triggered status changevoid mapIsPanning()
void mapIsZooming()
void mapDidZoom(float zoomLevel)
void annotationWasTapped(Annotation.TouchType touchType, Annotation annotation)
annotation - the annotation was clickedvoid annotationWasTapped(Annotation.TouchType touchType, String popupText)
popupText - the message of tile's annotation was clickedboolean mapWasTappedAtLocation(android.location.Location location)
location - the latitude/longitude of the pressed locationvoid setAddAnnotation(android.location.Location location)
void mapWasLongPress(android.location.Location location)