Interface OnUserInteractionListener


  • public interface OnUserInteractionListener
    Get notified of events produced by user interactions.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onBuildingMarkerSelected​(es.situm.sdk.model.cartography.Building building)
      Notifies that the user has selected a building.
      void onMapReady()
      Get notified when the underlying map is ready.
      void onMapTouched​(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.