uni.getLocation({
type: "wgs84",
isHighAccuracy: true,
accuracy: "best",
success: function (res) {
console.log("uni.getLocation", res);
// let mars_point=wgs84_to_gcj02(res.longitude,res.latitude);
// console.log("mars_point",mars_point)
that.longitude = res.longitude.toFixed(6);
that.latitude = res.latitude.toFixed(6);
// that.getLocationInfo('LTB2023090509', '104.042495', '30.620657') //测试用的数据
that.getLocationInfo(
that.curParam.serialNumber,
that.longitude,
that.latitude
); //后端返回详细地址信息
},
fail: function (res) {
console.log("resresfail", res);
},
complete: function (res) {
console.log("complete", res);
},
});
- 发布:2024-05-29 17:27
- 更新:2024-05-29 18:18
- 阅读:193
产品分类: uniapp/H5
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 19045.4170
HBuilderX类型: 正式
HBuilderX版本号: 4.15
浏览器平台: 微信内置浏览器
项目创建方式: HBuilderX
示例代码:
操作步骤:
进入下方移动端网站,选择左上角待检测,选择下方列表打卡
进入下方移动端网站,选择左上角待检测,选择下方列表打卡
预期结果:
弹出授权,获取经纬度
弹出授权,获取经纬度
实际结果:
未弹出是否允许获取定位弹窗,没有拒绝过获取定位
未弹出是否允许获取定位弹窗,没有拒绝过获取定位
5***@qq.com (作者)
域名问题为啥有些ios在微信就可以,有些ios就不行啊,同一个东西部分手机
2024-05-30 09:04
沈工
回复 5***@qq.com: ios 苹果真机运行是可以的,我以为你做的是h5
2024-05-30 09:08
沈工
回复 5***@qq.com: 我觉得你应该在mainifest权限配置错了;这个我写的定位适合app端你可以看看,希望可以帮到你;https://ext.dcloud.net.cn/plugin?id=18122
2024-05-30 09:15