Package es.situm.wayfinding
Interface OnUserInteractionListener
-
public interface OnUserInteractionListenerGet notified of events produced by user interactions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonBuildingMarkerSelected(es.situm.sdk.model.cartography.Building building)Notifies that the user has selected a building.voidonMapReady()Get notified when the underlying map is ready.voidonMapTouched(com.google.android.gms.maps.model.LatLng coordinates)Get notified when the user touches the map.
-
-
-
Method Detail
-
onMapReady
void onMapReady()
Get notified when the underlying map is ready.
-
onMapTouched
void onMapTouched(com.google.android.gms.maps.model.LatLng coordinates)
Get notified when the user touches the map.- Parameters:
coordinates- The coordinates in the map.
-
onBuildingMarkerSelected
void onBuildingMarkerSelected(es.situm.sdk.model.cartography.Building building)
Notifies that the user has selected a building.- Parameters:
building- The selected building.
-
-