uni-app 苹果设备getLocation中type参数为“gcj02”报错 而传参为“wgs84”为正常
uni-app 苹果设备getLocation中type参数为“gcj02”报错 而传参为“wgs84”为正常
示例代码:
uni.getLocation({
type: "gcj02",
geocode: true,
success: (res) => {
console.log(res);
},
fail: (err) => {
console.log(err);
},
});
操作步骤:
- iPhone13调用getLocation报错。
预期结果:
{
"type": "wgs84",
"altitude": 49.61723136901855,
"latitude": 41.78887731700071,
"longitude": 123.3998432883835,
"speed": null,
"accuracy": 37,
"address": {
"city": "沈阳市",
"country": "中国",
"district": "和平区",
"province": "辽宁省",
"street": "南京北街",
"streetNum": "326号"
},
"errMsg": "getLocation:ok"
}
实际结果:
{
"errMsg": "getLocation:fail Error Domain=PGLocation Code=2 \"不能获取到位置\" UserInfo={NSLocalizedDescription=不能获取到位置},https://ask.dcloud.net.cn/article/282",
"errCode": -1502,
"code": -1502
}
bug描述:
- 苹果手机中使用定位功能,不能返回地理位置信息。
- 当uni.getLocation中type参数为“gcj02”报错,而传参为“wgs84”为正常
4 回复
配定位sdk了么
系统定位只支持 wgs84 你要用gcj02可以用高德定位
应该是在Hbuilder基座中不生效,打成测试包安装后可以了。
在 uni-app
中,getLocation
方法用于获取设备的地理位置信息。type
参数用于指定返回的坐标类型,常见的值有 wgs84
和 gcj02
。
wgs84
:返回国际标准的 GPS 坐标(WGS-84 坐标系)。gcj02
:返回中国国测局加密的坐标(GCJ-02 坐标系)。
在苹果设备上,getLocation
方法中 type
参数为 gcj02
时可能会报错,而 wgs84
正常,这可能是由于以下原因:
1. 苹果设备的原生实现
苹果设备的原生定位服务(如 CoreLocation
)默认返回的是 wgs84
坐标。uni-app
在调用 getLocation
时,如果指定 type
为 gcj02
,可能需要将 wgs84
坐标转换为 gcj02
坐标。如果转换逻辑在苹果设备上未正确实现或存在兼容性问题,可能会导致报错。
2. 平台差异
不同平台(iOS、Android)对 getLocation
方法的实现可能存在差异。gcj02
是中国特有的坐标系,可能在苹果设备上未得到完全支持,或者需要额外的处理逻辑。
解决方案
1. 使用 wgs84
坐标
如果 wgs84
坐标能够满足需求,可以直接使用 wgs84
坐标,避免使用 gcj02
。
uni.getLocation({
type: 'wgs84',
success: function (res) {
console.log('经度:' + res.longitude);
console.log('纬度:' + res.latitude);
},
fail: function (err) {
console.error('获取位置失败:', err);
}
});
2. 手动转换坐标
如果确实需要使用 gcj02
坐标,可以在获取 wgs84
坐标后,使用第三方库或算法将 wgs84
坐标转换为 gcj02
坐标。
uni.getLocation({
type: 'wgs84',
success: function (res) {
const wgs84Lat = res.latitude;
const wgs84Lng = res.longitude;
// 使用第三方库将 wgs84 转换为 gcj02
const gcj02Coord = transformWGS84ToGCJ02(wgs84Lat, wgs84Lng);
console.log('GCJ02 经度:' + gcj02Coord.lng);
console.log('GCJ02 纬度:' + gcj02Coord.lat);
},
fail: function (err) {
console.error('获取位置失败:', err);
}
});
function transformWGS84ToGCJ02(lat, lng) {
// 这里可以使用第三方库或算法进行坐标转换
// 例如:https://github.com/wandergis/coordtransform
// 返回转换后的 GCJ02 坐标
return { lat: gcj02Lat, lng: gcj02Lng };
}