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

/**
 * 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 #onLocationLayerLongClick()} method
 * gets invoked.
 */
public interface OnLocationLayerLongClickListener {

  void onLocationLayerLongClick();
}