Add Google location information and Google location information to your website

Source: Internet
Author: User

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;

 

});

}});

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.