手机
当前位置:查字典教程网 >网页设计 >HTML5教程 >如何在网站上添加谷歌定位信息
如何在网站上添加谷歌定位信息
摘要:我们可以很容易地使用HTML5导航对象获取当前位置。请按照以下步骤来获得城市/国家的细节。首先包括jQuery库JavaScriptCode...

我们可以很容易地使用HTML5导航对象获取当前位置。请按照以下步骤来获得城市/国家的细节。

首先包括jQuery库

JavaScript Code复制内容到剪贴板 <scripttype="text/javascript"src="jquery.js"></script> jQuery(function(){ //callnavigatorobjecttogetlatitudeandlogtitute if(navigator.geolocation){ //gettingcurrentlatitudeandlongtitude navigator.geolocation.getCurrentPosition(function(position){ //getlocationdetailsbasedonlatitudeandlongtitudefromGoogle varjsonUrl="https://maps.googleapis.com/maps/api/geocode/json?latlng="+position.coords.latitude+","+position.coords.longitude jQuery.getJSON(jsonUrl,function(data){ varresults=data.results[0]; console.info(results);//checkfirebug 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('FailedtogetLocationDetails...'); }); returnfalse; }); }});

以上这篇如何在网站上添加谷歌定位信息就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持查字典教程网。

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

【如何在网站上添加谷歌定位信息】相关文章:

HTML5如何为形状图上颜色怎么绘制具有颜色和透明度的矩形

分享全球十款超强HTML5开发工具

html5+css3进度条倒计时动画特效代码【推荐】

HTML5 video标签(播放器)学习笔记(一):使用入门

将HTML5 Canvas的内容保存为图片借助toDataURL实现

html5 Canvas画图教程(9)—canvas中画出矩形和圆形

html5构建触屏网站之touch事件介绍

html5配合css3实现带提示文字的输入框(摆脱js)

为你的html5网页添加音效示例

HTML5 DeviceOrientation实现手机网站摇一摇功能代码实例

精品推荐
分类导航