首页 / 浏览问题 / 三维GIS / 问题详情
DrawHandler的使用问题,drawEvt无效
1EXP 2023年04月20日
this.pointHandler = new Cesium.DrawHandler(this.viewer, Cesium.DrawMode.Point);

  this.pointHandler.drawEvt.addEventListener(function (result) {

      console.log(result, "pointresult")

})

 this.pointHandler.movingEvt.addEventListener(function (result) {

      console.log("movingEvt")

    });

    this.handler = new Cesium.ScreenSpaceEventHandler(this.scene.canvas)

  this.handler.setInputAction(function (e) {
      console.log("click")
    }, Cesium.ScreenSpaceEventType.LEFT_CLICK)

代码如上 左击有效,pointHandler的movingEvt有效,但仅drawEvt无效,可能是什么原因呢

1个回答

4,151EXP 2023年04月20日
...