码迷,mamicode.com
首页 > 其他好文 > 详细

h5地理位置定位

时间:2020-08-06 17:00:26      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:bsp   element   位置   ESS   定位   mes   pos   err   lse   

//step1:判断浏览器是否支持
if (navigator.geolocation){
//step 2:调用 getCurrentPosition() 函数获取用户当前位置。
navigator.geolocation.getCurrentPosition(
function(ev){//step3:用经纬度描述具体位置
document.getElementById(geo).innerHTML = 纬度:+ev.coords.latitude+ 经度:+ev.coords.longitude;
},
function(err){
document.getElementById(geo).innerHTML = err.code+:+err.message;
})
}else{
alert(该浏览器不支持);

 

h5地理位置定位

标签:bsp   element   位置   ESS   定位   mes   pos   err   lse   

原文地址:https://www.cnblogs.com/fwjlucifinil/p/13446577.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!