自定义个原生基座
- 发布:2024-06-18 13:59
- 更新:2024-06-18 13:59
- 阅读:200
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows10
HBuilderX类型: 正式
HBuilderX版本号: 4.15
手机系统: Android
手机系统版本号: Android 11
手机厂商: 本安型工业防爆手机
手机机型: 安卓任意手机
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
自定义基座,非自定义基座uni.getLocation({
type: 'wgs84',
success: function (res) {
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
}
});
得到的经纬度坐标
自定义基座,非自定义基座uni.getLocation({
type: 'wgs84',
success: function (res) {
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
}
});
得到的经纬度坐标
实际结果:
非自定义基座每次都能获取坐标,
自定义基座每次都是同一个值
非自定义基座每次都能获取坐标,
自定义基座每次都是同一个值
bug描述:
自定义基座,获取经纬度调用 uni.getLocation({
type: 'wgs84 ',
isHighAccuracy: true,
success: function(res) {
var dt = new Date;
this.latitude = res.latitude;
this.longitude = res.longitude;
let msg= this.latitude +'---'+ this.longitude
uni.showToast({
icon: 'none',
title: msg,
duration: 2000
})
}
});
失败,原生基座没问题
0 个回复