同一个kmz数据同样的底图在QGIS上显示位置正常, 在Mars3d中显示就偏移了一些

问题:

1.同一个kmz数据同样的底图在QGIS上显示位置正常, 在网页中显示就偏移了一些

在qgis上的显示效果,和在mars3d的显示效果:数据明显存在偏移。

解决步骤:

1.查看了kmz数据,里面实际是tif图片数据,估计投影坐标有偏移造成的,tif用标准的4326或3857坐标系尝试

重新生成了数据为4326的,但在示例中测试后还是有偏移。

示例的测试地址:功能示例(Vue版) | Mars3D三维可视化平台 | 火星科技

function onMounted(mapInstance) {

mapInstance.setLayersOptions([{

name: 'HN',

type: 'kml',

// url:'https://1111111111111com/file/demo-data/HNS4326.kmz',

url:'https://com/file/demo-data/HNS_3857.kmz',

center: {"lat":19.9,"lng":110.5,"alt":136098,"heading":0,"pitch":-90},

show: true,

flyTo: true

}])

}

3.最后定位到问题是,cesium内部解析的,无法干预,最好是直接替换数据为3857坐标系尝试渲染。

备注说明:1.该示例cesium内部是用RectangleEntity+图片材质,实现的

2.建议直接用ImageLayer来加载这个tif图片。

3.Mars3d关于ImageLayer的使用示例参考与api地址:

功能示例(Vue版) | Mars3D三维可视化平台 | 火星科技

ImageLayer - V3.6.15 - Mars3D API文档

function createGroundOverlay(state, rectangleGraphics, overlays) {

const kmlDoc = state.kmlDoc;

const valueGetter = state.valueGetter;

const externalFileHandler = state.externalFileHandler;

const groundOverlay = kmlDoc.createElement("GroundOverlay");

// Set altitude mode

const altitudeMode = kmlDoc.createElement("altitudeMode");

altitudeMode.appendChild(

getAltitudeMode(state, rectangleGraphics.heightReference)

);

groundOverlay.appendChild(altitudeMode);

const height = valueGetter.get(rectangleGraphics.height);

if (defined(height)) {

groundOverlay.appendChild(

createBasicElementWithText(kmlDoc, "altitude", height)

);

}

const rectangle = valueGetter.get(rectangleGraphics.coordinates);

const latLonBox = kmlDoc.createElement("LatLonBox");

latLonBox.appendChild(

createBasicElementWithText(

kmlDoc,

"north",

CesiumMath.toDegrees(rectangle.north)

)

);

latLonBox.appendChild(

createBasicElementWithText(

kmlDoc,

"south",

CesiumMath.toDegrees(rectangle.south)

)

);

latLonBox.appendChild(

createBasicElementWithText(

kmlDoc,

"east",

CesiumMath.toDegrees(rectangle.east)

)

);

latLonBox.appendChild(

createBasicElementWithText(

kmlDoc,

"west",

CesiumMath.toDegrees(rectangle.west)

)

);

groundOverlay.appendChild(latLonBox);

// We should only end up here if we have an ImageMaterialProperty

const material = valueGetter.get(rectangleGraphics.material);

const href = externalFileHandler.texture(material.image);

const icon = kmlDoc.createElement("Icon");

icon.appendChild(createBasicElementWithText(kmlDoc, "href", href));

groundOverlay.appendChild(icon);

const color = material.color;

if (defined(color)) {

groundOverlay.appendChild(

createBasicElementWithText(kmlDoc, "color", colorToString(material.color))

);

}

overlays.push(groundOverlay);

}

相关推荐
Along丶WG37 分钟前
解决国内服务器 npm install 卡住的问题
前端·npm·node.js
prince_zxill43 分钟前
Node.js 和 npm 安装教程
前端·javascript·vue.js·npm·node.js
弄不死的强仔1 小时前
可被electron等调用的Qt截图-录屏工具【源码开放】
前端·javascript·qt·electron·贴图·qt5
霸王蟹2 小时前
el-table组件样式如何二次修改?
前端·javascript·vue.js·笔记·学习·前端框架
star010-3 小时前
一文学会HTML编程之视频+图文详解详析
前端·网络·网络安全·html·html5
star010-3 小时前
【视频+图文详解】HTML基础3-html常用标签
前端·css·网络安全·html·html5·学习方法
无限大.8 小时前
前端知识速记:节流与防抖
前端
十八朵郁金香8 小时前
【VUE案例练习】前端vue2+element-ui,后端nodo+express实现‘‘文件上传/删除‘‘功能
前端·javascript·vue.js
学问小小谢8 小时前
第26节课:内容安全策略(CSP)—构建安全网页的防御盾
运维·服务器·前端·网络·学习·安全
LCG元9 小时前
Vue.js组件开发-实现全屏图片文字缩放切换特效
前端·javascript·vue.js