-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename isPointOnLocationPuck to isLocatedAt, IsPointOnLocationPuckLis…
…tener to LocatedAtValidationListener.
- Loading branch information
Showing
5 changed files
with
23 additions
and
23 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
13 changes: 0 additions & 13 deletions
13
...e/src/main/java/com/mapbox/maps/plugin/locationcomponent/IsPointOnLocationPuckListener.kt
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
...ase/src/main/java/com/mapbox/maps/plugin/locationcomponent/LocatedAtValidationListener.kt
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.maps.plugin.locationcomponent | ||
|
||
/** | ||
* Listener that gets invoked when the is location puck rendered on point validation finished. | ||
*/ | ||
fun interface LocatedAtValidationListener { | ||
/** | ||
* This method is called when the is location puck rendered on point validation finished. | ||
* | ||
* @param isLocationRenderedAtPoint true if the given point is on the rendered location puck, false otherwise. | ||
*/ | ||
fun onResult(isLocationRenderedAtPoint: Boolean) | ||
} |
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