Add Google location information and Google location information to your website
We can easily use HTML5 navigation objects to obtain the current location. Follow these steps to obtain details about the city/country.
Includes the jQuery Library
<Script type = "text/javascript" src = "jquery. js"> </script>
JQuery (function (){
// Call navigator object to get latitude and logtitute
If (navigator. geolocation ){
// Getting current latitude and longtitude
Navigator. geolocation. getCurrentPosition (function (position ){
// Get location details based on latitude and longtitude from Google
Var jsonUrl = "https://maps.googleapis.com/maps/api/geocode/json? Latlng = "+ position. coords. latitude +", "+ position. coords. longpolling
JQuery. getJSON (jsonUrl, function (data ){
Var results = data. results [0];
Console.info (results); // check firebug
Alert (results. address_components [5]. long_name); // City
Alert (results. address_components [6]. long_name); // State
Alert (results. address_components [7]. long_name); // Country
},
Function (){
Alert ('failed' to get Location Details ...');
});
Return false;
});
}});