summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/plugins/locationlayer/OnLocationLayerClickListener.java
blob: 83d4ce72cc478d84456b62a2fc58036a7820cc80 (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 clicks on the location
 * layer icon visible on the map. when this event occurs, the {@link #onLocationLayerClick()} method
 * gets invoked.
 */
public interface OnLocationLayerClickListener {

  void onLocationLayerClick();
}