h5地理位置定位
Posted fwjlucifinil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了h5地理位置定位相关的知识,希望对你有一定的参考价值。
//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地理位置定位的主要内容,如果未能解决你的问题,请参考以下文章