How to add Google location information and Google location information to a 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
Copy the content to the clipboard using JavaScript Code
- <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;
- });
- }});
In this article, how to add Google location information on the website is all the content shared by Alibaba Cloud. I hope you can give us a reference and support for the customer's home.
Address: http://www.cnblogs.com/mivi/archive/2016/04/16/5398183.html