Skip to content

Instantly share code, notes, and snippets.

@softauthor
Created January 6, 2020 21:46
Show Gist options
  • Save softauthor/0c236353093da0a47ac326c06b404966 to your computer and use it in GitHub Desktop.
Save softauthor/0c236353093da0a47ac326c06b404966 to your computer and use it in GitHub Desktop.
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