Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (navigator.geolocation) {
- navigator.geolocation.getCurrentPosition(showPosition);
- } else {
- console.log('Not Supported');
- }
- function showPosition(position) {
- console.log(`Latitude: ${position.coords.latitude}\nLongitude: ${position.coords.longitude}`);
- }
Advertisement
Add Comment
Please, Sign In to add comment