A little javascript class to handle geolocation in a web browser
https://github.com/FabFab/GPS-in-your-browser
How it works :
GPS.get(); [...] var latitude = GPS.position.latitude; var longitude = GPS.position.longitude;
or with a callback:
GPS.get(updatePosition); function updatePosition() { var latitude = GPS.position.latitude; var longitude = GPS.position.longitude; [...] }
More about Geolocation in web browsers:
http://en.wikipedia.org/wiki/W3C_Geolocation_API#How_does_Geolocation_work.3F
Latest posts by Fab (see all)
- Dead simple Vue.js router example - 24 August 2019
- Street Art from Tel Aviv - 19 November 2018
- Street Art from Sao Paulo - 3 June 2018