Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save softauthor/0986f6743bfa0a96182777db918c8362 to your computer and use it in GitHub Desktop.
Save softauthor/0986f6743bfa0a96182777db918c8362 to your computer and use it in GitHub Desktop.
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