summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationLongClickListener.java
blob: 0c34614f3e40f410e5a1831280b903193bf4b301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mapbox.mapboxsdk.location;

/**
 * The Location Component exposes an API for listening to when the user long clicks on the location
 * layer icon visible on the map. when this event occurs, the {@link #onLocationComponentLongClick()} method
 * gets invoked.
 */
public interface OnLocationLongClickListener {

  /**
   * Called whenever user long clicks on the location layer drawn on the map.
   */
  void onLocationComponentLongClick();
}