首页 / 浏览问题 / 三维GIS / 问题详情
三维地质体爆炸只能使用静态s3m文件吗
20EXP 2022年02月21日
你好 我看了咱们官网的例子地质体爆炸是通过加载三维静态文件实现的  有没有方法 可以用iServer服务的方式实现地址体爆炸的方法

1个回答

您好,地质体爆炸实际上就是改变的模型的z值,

参考这个示例 http://support.supermap.com.cn:8090/webgl/examples/webgl/editor.html#geologicBodyOperation

通过以下方法进行修改

solidModelsProfile._s3mInstanceCollection._group['http://www.supermapol.com/realspace/services/data-dizhiti/rest/data/datasources/%E5%9C%B0%E8%B4%A8%E4%BD%93/datasets/Layer1/features/1.stream'].instances._array[0].updatePosition(new Cesium.Cartesian3.fromDegrees(116, 30,4300))

修改只想改变Z值的话,x,y就不用修改

341EXP 2022年02月21日
...