geolocate

Use geolocation services to get lat long. Currently only works on OSX Snow Leopard or greater, but I'd love contributions for other platforms.

Usage no npm install needed!

<script type="module">
  import geolocate from 'https://cdn.skypack.dev/geolocate';
</script>

README

geolocate

Use geolocation services to get lat long. Currently only works on OSX Snow Leopard or greater, but I'd love contributions for other platforms.


var geolocate = require('geolocate');
geolocate(function(latLong){
   var latitude = latLong[0];
   var longitude = latLong[1];
});

Thanks to https://github.com/robmathers/WhereAmI for the actual heavy lifting!