steveosoule
5/20/2013 - 8:37 PM

Mobile Geolocation

Mobile Geolocation

var success = function(position) {
  var latitude = position.coords.latitude;
  var longitude = position.coords.longitude;
};

navigator.geolocation.getCurrentPosition(success);

var watchId = navigator.geolocation.watchPosition(
    function (position) { ... });

// Stop watching when you're done.
clearWatch(watchId);