GPS Geolocation in web browser class in Javascript


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

Fab
Latest posts by Fab (see all)

About Fab

Solutions Architect, I build great workflows for the news, media and broadcast industries. I play with data too.

Leave a comment

Your email address will not be published. Required fields are marked *