如何使用HTML5地理定位或Google API获取地址的经纬度?
为了使用 HTML5 地理位置或任何 Google API 获取纬度和经度,我们需要为此添加 JavaScript。
脚本如下 -
if (navigator.geolocation) { /* If current position is obtained then there is success otherwise there is failure. On failure, separate error message is shown */ navigator.geolocation.getCurrentPosition(successFunc, errorFunc);} else { alert(‘Geolocation is not enabled in your browser. Please use a latest browser to supports it.');}
文章推荐
-
html代码是什么
html代码是html标签元素组成,而html代码包括各式各样的html元素标签而组成,通过不同的标签与内容组合形成我们...
HTML
3个月前 (09-22) 174 -
值得一学的6个前端HTML+CSS特效
本篇文章给大家分享6个值得一学的前端html+css特效。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助...
HTML
3个月前 (09-22) 160 -
html怎么设置字体
html设置字体的方法:1、【font-variant】属性可以设定小型大写字母;2、【font-weight】属性设置...
HTML
3个月前 (09-22) 207 -
怎么隐藏html标签
隐藏html标签的方法:1、通过设置display属性为【none;】这个属性是将元素设置成无;2、通过设置visibi...
HTML
3个月前 (09-22) 150 -
html怎么设置编码utf8
html设置编码utf8的方法:首先打开html文件;然后在head之间添加语句“”即可。本文操作环境:Windows7...
HTML
3个月前 (09-22) 168
最新文章