uni.getLocation({
type: 'gcj02',
geocode: true,
success: function(res) {
console.log(res)
}
});
- 发布:2023-06-28 09:12
- 更新:2023-06-28 11:43
- 阅读:256
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 3.8.6
手机系统: iOS
手机系统版本号: iOS 16
手机厂商: 苹果
手机机型: iphone14 pro max
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
预计结果带有address字段
预计结果带有address字段
预期结果:
预计结果带有address字段
预计结果带有address字段
实际结果:
{
"type": "gcj02",
"altitude": 40.85457229614258,
"latitude": 30.54969021267361,
"longitude": 114.32466796875,
"speed": null,
"accuracy": 65,
"errMsg": "getLocation:ok"
}
{
"type": "gcj02",
"altitude": 40.85457229614258,
"latitude": 30.54969021267361,
"longitude": 114.32466796875,
"speed": null,
"accuracy": 65,
"errMsg": "getLocation:ok"
}
bug描述:
uni.getLocation在ios下报错,打印没有address字段
碎月无痕 (作者) - 碎月无痕心有痕
如果type为wgs84,是有address字段,只是不详细。
{
"type": "wgs84",
"altitude": 39.68978500366211,
"latitude": 30.55208532717569,
"longitude": 114.3191967691536,
"speed": null,
"accuracy": 65,
"address": {
"city": "武汉市",
"country": "中国",
"district": "武昌区",
"province": "湖北省",
"street": "民主二路"
},
"errMsg": "getLocation:ok"
}
碎月无痕 (作者)
高德定位
2023-06-28 12:02
DCloud_iOS_WZT
回复 碎月无痕: 查下是不是高德的id你填错了 或者没自定义基座吧
2023-06-28 12:57
碎月无痕 (作者)
回复 DCloud_iOS_WZT: 检查是因为没有用自定义基座引起的
2023-06-28 15:03