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

/**
 * The Location Layer Plugin 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 OnLocationComponentLongClickListener {

  void onLocationComponentLongClick();
}