HarmonyOS 鸿蒙Next Petal Map使用的经纬度是WGS84还是GCJ02
HarmonyOS 鸿蒙Next Petal Map使用的经纬度是WGS84还是GCJ02
import { common, Want } from ‘@kit.AbilityKit’;
let petalMapWant: Want = {
bundleName: ‘com.huawei.hmos.maps.app’,
uri: ‘maps://routes’,
parameters: {
linkSource: ‘com.other.app’,
destinationLatitude: 31.983015468224288,
destinationLongitude: 118.78058590757131,
destinationPoiId: ‘2031694785326435456’,
destinationName: ‘南京(雨花)国际软件xxx’
}
}
let context = getContext(this) as common.UIAbilityContext;
context.startAbility(petalMapWant);
destinationLatitude: 31.983015468224288,
destinationLongitude: 118.78058590757131,
这两个经纬度需要WGS84还是GCJ02?
更多关于HarmonyOS 鸿蒙Next Petal Map使用的经纬度是WGS84还是GCJ02的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
2 回复
Petal 地图使用的坐标类型
在国内站点,中国大陆、中国香港和中国澳门使用GCJ02坐标系,中国台湾使用WGS84坐标系。
在海外站点,统一使用WGS84坐标系。坐标系转换参考:地图坐标系说明及转换。
相关文档:
https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/map-petalmaps-V5
更多关于HarmonyOS 鸿蒙Next Petal Map使用的经纬度是WGS84还是GCJ02的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html