Cesium 事件

Posted 追梦百合fly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cesium 事件相关的知识,希望对你有一定的参考价值。

1.相机事件(移动开始、移动结束等等)
viewer.scene.camera.moveEnd.addEventListener(function(){

});
2.鼠标事件(单击、移动、右键等)
var handler = new Cesium.ScreenSpaceEventHandler(viewer.scene.canvas);
handler.setInputAction(function (movement) {

}, Cesium.ScreenSpaceEventType.MOUSE_MOVE);
3.渲染事件(实时渲染,很关键的一个事件)
var renderEnd = viewer.scene.postRender.addEventListener(function(){


});





以上是关于Cesium 事件的主要内容,如果未能解决你的问题,请参考以下文章

Cesium 事件

cesium 实体点击事件

Cesium开发入门篇 05Cesium API结构介绍

cesium 场景Scene

Cesium实战项目1.点线面实体绘制

Cesium常用代码总结