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)
- Popshot Quarterly: review - 11 January 2023
- CoWorking.Coffee: the End. - 6 November 2022
- This Is How You Lose the Time War: review - 5 September 2022