里海
里海
  • 发布:2021-06-18 12:29
  • 更新:2021-06-18 12:29
  • 阅读:455

wei-view中h5高德地图定位偏差的问题咋解决

分类:uni-app
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, //定位成功后是否自动调整地图视野到定位点  
                    showCircle: true,  
                });  
                console.log(geolocation)  
                map.addControl(geolocation);  
                geolocation.getCurrentPosition(function(status, result) {  
                    if (status == 'complete') {  
                        onComplete(result)  
                    } else {  
                        onError(result)  
                    }  
                });  
            });
2021-06-18 12:29 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复