Created
January 6, 2020 21:44
-
-
Save softauthor/0986f6743bfa0a96182777db918c8362 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 => { | |
console.log(position.coords.latitude); | |
console.log(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