Package com.navmii.sdk.map
Interface MapView.PlaceListener
-
- Enclosing class:
- MapView
public static interface MapView.PlaceListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onDoubleTap(java.util.List<Place> places)
The event is called when the user performs a double tap on one or multiple places.void
onLongTap(java.util.List<Place> places)
The event is called when the user performs a long tap on one or multiple places.void
onSingleTap(java.util.List<Place> places)
The event is called when the user performs a single tap on one or multiple places.
-
-
-
Method Detail
-
onSingleTap
void onSingleTap(java.util.List<Place> places)
The event is called when the user performs a single tap on one or multiple places.- Parameters:
places
- The places that were tapped.
-
onDoubleTap
void onDoubleTap(java.util.List<Place> places)
The event is called when the user performs a double tap on one or multiple places.- Parameters:
places
- The places that were tapped.
-
onLongTap
void onLongTap(java.util.List<Place> places)
The event is called when the user performs a long tap on one or multiple places.- Parameters:
places
- The places that were tapped.
-
-