冬眠
冬眠
  • 发布:2023-03-27 17:45
  • 更新:2023-03-27 17:45
  • 阅读:240

你好,我用了这个uni.getLocationH5定位使用的是腾讯地图 走了一段时间后定位还在原来的位置这是什么原因呢

分类:uni-app
uni.getLocation({  
                    type: 'gcj02',  
                    geocode: true,  
                    isHighAccuracy: true,  
                    accuracy: 'best',  
                    altitude: true,  
                    success(res) {  
                        that.lat = res.latitude;  
                        that.lng = res.longitude;  
                    },  
                    fail(err) {  
                        that.showModal = true  
                    }  
                });
2023-03-27 17:45 负责人:无 分享
已邀请:
冬眠

冬眠 (作者) - 1

uni.getLocation({  
                    type: 'gcj02',  
                    geocode: true,  
                    isHighAccuracy: true,  
                    accuracy: 'best',  
                    altitude: true,  
                    success(res) {  
                        that.lat = res.latitude;  
                        that.lng = res.longitude;  

                    },  
                    fail(err) {  
                        that.showModal = true  
                    }  
                });  

要回复问题请先登录注册