Skip to content

Instantly share code, notes, and snippets.

@mkoryak
Last active April 9, 2017 17:48
Show Gist options
  • Save mkoryak/4465365 to your computer and use it in GitHub Desktop.
Save mkoryak/4465365 to your computer and use it in GitHub Desktop.
Using HTML5 location API and google reverse geocoding to get browser location. Dependencies: 1) underscore.js 2) https://github.com/estebanav/javascript-mobile-desktop-geolocation 3) <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
if(geoPosition.init()){
var foundLocation = function(city, state, country, lat, lon){
//do stuff with your location! any of the first 3 args may be null
console.log(arguments);
}
var geocoder = new google.maps.Geocoder();
geoPosition.getCurrentPosition(function(r){
var findResult = function(results, name){
var result = _.find(results, function(obj){
return obj.types[0] == name && obj.types[1] == "political";
});
return result ? result.short_name : null;
};
geocoder.geocode({'latLng': new google.maps.LatLng(r.coords.latitude, r.coords.longitude)}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK && results.length) {
results = results[0].address_components;
var city = findResult(results, "locality");
var state = findResult(results, "administrative_area_level_1");
var country = findResult(results, "country");
foundLocation(city, state, country, r.coords.latitude, r.coords.longitude);
} else {
foundLocation(null, null, null, r.coords.latitude, r.coords.longitude);
}
});
}, { enableHighAccuracy:false, maximumAge: 1000 * 60 * 1 });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment