Skip to content

Instantly share code, notes, and snippets.

@softauthor
Created March 22, 2020 02:03
Show Gist options
  • Save softauthor/e9a8e90b4a458ebd64509eeb25ebc73f to your computer and use it in GitHub Desktop.
Save softauthor/e9a8e90b4a458ebd64509eeb25ebc73f to your computer and use it in GitHub Desktop.
methods: {
locatorButtonPressed() {
navigator.geolocation.getCurrentPosition(
position => {
this.lat = position.coords.latitude;
this.lng = position.coords.longitude;
},
error => {
console.log("Error getting location");
}
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment