-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add max / min zoom and padding APIs (#313)
* Clean up and javadoc * Add long click listener * Add max / min zoom and padding APIs * Fix javadoc * Add default values to options
- Loading branch information
1 parent
5ad4a96
commit a29e25b
Showing
4 changed files
with
179 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,4 @@ | |
public interface OnLocationLayerClickListener { | ||
|
||
void onLocationLayerClick(); | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
...ain/java/com/mapbox/mapboxsdk/plugins/locationlayer/OnLocationLayerLongClickListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
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. | ||
* | ||
* @since 0.5.0 | ||
*/ | ||
public interface OnLocationLayerLongClickListener { | ||
|
||
void onLocationLayerLongClick(); | ||
} |