Created
January 6, 2020 21:46
-
-
Save softauthor/0c236353093da0a47ac326c06b404966 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
locatorButtonPressed() { | |
navigator.geolocation.getCurrentPosition( | |
position => { | |
this.getStreetAddressFrom(position.coords.latitude, position.coords.longitude) | |
}, | |
error => { | |
console.log(error.message); | |
} | |
); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment