坐标转换 最后更新时间: 2024年11月21日
经纬度坐标与屏幕像素坐标互转
屏幕像素坐标转经纬度坐标
map.getProjection()?.fromScreenLocation(new Point(10, 10), (coord) => {
console.log('地理坐标', coord)
});
经纬度坐标转屏幕像素坐标
map.getProjection()?.toScreenLocation(new LatLng(39.957957,116.369404),(coord)=>{
console.log('屏幕坐标', coord)
});