chooseLocation(data) { //打开地图选择位置
const that = this;
checkOpenGPSServiceByAndroid(that);
uni.chooseLocation({
success(res) {
console.log('res', res);
if (data == 'addr') {
that.model.listData.stationAddress = res.address;
that.model.listData.Lat = res.latitude;
that.model.listData.Lng = res.longitude;
} else {
that.model.listData.Lat = res.latitude;
that.model.listData.Lng = res.longitude;
}
}
});
},
- 发布:2024-07-23 11:25
- 更新:2024-07-23 13:15
- 阅读:145
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 4.24
手机系统: Android
手机系统版本号: Android 12
手机厂商: 荣耀
手机机型: 荣耀9X
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
出现地址列表
出现地址列表
实际结果:
一直加载
一直加载
bug描述:
app端uni.chooseLocation一直在转圈圈,但是map上的箭头已经是聚焦在附近的了
1***@qq.com (作者)
输入关键字,附近选项下没有,更多选项下有结果列表
2024-07-23 15:20