Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.32 KB

README.md

File metadata and controls

37 lines (32 loc) · 1.32 KB

Notes

Rough Outline

HTML5 Geolocation

function geoCallback(pos) {
  console.log([pos.coords.latitude, pos.coords.longitude, pos.coords.accuracy, pos.timestamp]);
}
navigator.geolocation.getCurrentPosition(geoCallback);