Skip to content

Instantly share code, notes, and snippets.

@usmaanalii
Created August 21, 2017 07:48
Show Gist options
  • Save usmaanalii/d163d1ac55e1341854e2c9819668af8a to your computer and use it in GitHub Desktop.
Save usmaanalii/d163d1ac55e1341854e2c9819668af8a to your computer and use it in GitHub Desktop.
const arrow = document.querySelector('.arrow');
const speed = document.querySelector('.speed-value ');
navigator.geolocation.watchPosition(data => {
// successful retrieval
speed.textContent = data.coords.speed;
arrow.style.transform = `rotate(${data.coords.heading}deg)`;
}, (error) => {
// unsuccessful retrieval
console.error(error);
alert('ENABLE GEOLOCATION!!!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment