首頁  >  文章  >  web前端  >  如何在網站上新增Google定位資訊_html5教學技巧

如何在網站上新增Google定位資訊_html5教學技巧

WBOY
WBOY原創
2016-05-16 15:51:531411瀏覽

我們可以輕鬆地使用HTML5導航物件來取得目前位置。請按照以下步驟來獲得城市/國家的細節。

首先包含jQuery庫

JavaScript Code複製內容到剪貼簿
  1. <script><span class="string">"text/javascript"</script> src="jquery.js""jquery.js"
  2. "jquery.js"
  3. "jquery.js"
  4. "jquery.js"   
  5.   
  6. jQuery(function() {   
  7.   
  8.   //call navigator object to get latitude and logtitute   
  9.   
  10.   if
  11. (navigator.geolocation) {   
  12.   
  13. //getting current latitude and longtitude
  14.   
  15.   
  16. navigator.geolocation.getCurrentPosition(function
  17. (position) {   
  18.   
  19.   //get location details based on latitude and longtitude from Google   longtitude from Google   longtitude from Google   longtitude from 谷歌   
  20.   
  21. var
  22.  jsonUrl = "https://maps.googleapis.com/maps/api/geo 🎜> position.coords.latitude ","
  23. position.coords.longitude   
  24.      jQuery.getJSON(jsonUrl , function
  25. ( data ) {   ( data ) {   
  26.   
  27.      
  28. var
  29.  results = data.results[0];   
  30.   
  31.               console.info(results); 
  32. //check fire.
  33.   
  34.      alert(results.address_components[5].long_name); //City
  35.   
  36. //City   
  37.   
  38.      alert(results.address_components[6].long_name); 
  39. //State
  40.   
  41.   
  42.   
  43.      alert(results.address_components[7].long_name); //Country   
  44. //Country
  45.   
  46.      },   
  47.   
  48.   
  49. function(){   
  50.         alert('Failed to get Location Details...');   
  51. );   
  52. );   
  53. );   
  54. );   
  55. );   
  56. );   
  57. );   
  
  });       return false;                      });         }});  

以上這篇如何在網站上添加谷歌定位資訊就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

原文網址:http://www.cnblogs.com/mivi/archive/2016/04/16/5398183.html

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn