Interface MapView.MapTapListener

Enclosing class:
MapView

public static interface MapView.MapTapListener
  • Method Summary

    Modifier and Type Method Description
    void onDoubleTap​(MapCoordinates coordinates)
    The event is called on the user's double tap on the map view.
    void onLongTap​(MapCoordinates coordinates)
    The event is called on the user's long tap on the map view.
    void onSingleTap​(MapCoordinates coordinates)
    The event is called on the user's single tap on the map view.
  • Method Details

    • onSingleTap

      void onSingleTap​(MapCoordinates coordinates)
      The event is called on the user's single tap on the map view.
      Parameters:
      coordinates - Coordinates corresponding to the tap location on the map.
    • onDoubleTap

      void onDoubleTap​(MapCoordinates coordinates)
      The event is called on the user's double tap on the map view.
      Parameters:
      coordinates - Coordinates corresponding to the tap location on the map.
    • onLongTap

      void onLongTap​(MapCoordinates coordinates)
      The event is called on the user's long tap on the map view.
      Parameters:
      coordinates - Coordinates corresponding to the tap location on the map.