碎月无痕
碎月无痕
  • 发布:2023-06-28 09:12
  • 更新:2023-06-28 11:43
  • 阅读:256

【报Bug】uni.getLocation在ios下报错,打印没有address字段

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: win10

HBuilderX类型: 正式

HBuilderX版本号: 3.8.6

手机系统: iOS

手机系统版本号: iOS 16

手机厂商: 苹果

手机机型: iphone14 pro max

页面类型: vue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:
uni.getLocation({  
                type: 'gcj02',  
                geocode: true,  
                success: function(res) {  
                    console.log(res)  
                }  
            });

操作步骤:

预计结果带有address字段

预期结果:

预计结果带有address字段

实际结果:
{  
    "type": "gcj02",  
    "altitude": 40.85457229614258,  
    "latitude": 30.54969021267361,  
    "longitude": 114.32466796875,  
    "speed": null,  
    "accuracy": 65,  
    "errMsg": "getLocation:ok"  
}

bug描述:

uni.getLocation在ios下报错,打印没有address字段

2023-06-28 09:12 负责人:无 分享
已邀请:
DCloud_iOS_WZT

DCloud_iOS_WZT

用的系统定位嚒还是高德

碎月无痕

碎月无痕 (作者) - 碎月无痕心有痕

如果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"
}

要回复问题请先登录注册