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

  void onLocationComponentClick();
}