当前位置:   article > 正文

android高德 位置签到,高德地图定位签到功能实现

高德 android 签到定位
浏览器精确定位

html,body,#container{

height:100%;

}

.info{

width:26rem;

}



由于众多浏览器已不再支持非安全域的定位请求,为保位成功率和精度,请升级您的站点到HTTPS。

var map = new AMap.Map('container', {

resizeEnable: true

});

AMap.plugin('AMap.Geolocation', function() {

var geolocation = new AMap.Geolocation({

enableHighAccuracy: true,//是否使用高精度定位,默认:true

timeout: 10000, //超过10秒后停止定位,默认:5s

buttonPosition:'RB', //定位按钮的停靠位置

buttonOffset: new AMap.Pixel(10, 20),//定位按钮与设置的停靠位置的偏移量,默认:Pixel(10, 20)

zoomToAccuracy: true, //定位成功后是否自动调整地图视野到定位点

});

map.addControl(geolocation);

geolocation.getCurrentPosition(function(status,result){

if(status=='complete'){

onComplete(result)

}else{

onError(result)

}

});

});

//解析定位结果

function onComplete(data) {

document.getElementById('status').innerHTML='定位成功'

var str = [];

str.push('定位结果:' + data.position);

str.push('定位类别:' + data.location_type);

if(data.accuracy){

str.push('精度:' + data.accuracy + ' 米');

}//如为IP精确定位结果则没有精度信息

str.push('是否经过偏移:' + (data.isConverted ? '是' : '否'));

document.getElementById('result').innerHTML = str.join('
');

}

//解析定位错误信息

function onError(data) {

document.getElementById('status').innerHTML='定位失败'

document.getElementById('result').innerHTML = '失败原因排查信息:'+data.message;

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/580147
推荐阅读
相关标签
  

闽ICP备14008679号