marsgis / mars3d

【Mars3D平台 】主仓库,包含所有开源仓库清单导航
http://mars3d.cn
Apache License 2.0
982 stars 137 forks source link

FixedRoute固定轨迹路线,事件监听异常 #18

Closed Soya-xy closed 1 year ago

Soya-xy commented 2 years ago

参考官方示例

  fixedRoute.on(mars3d.EventType.endItem, (event) => {
    console.log('经过第'+fixedRoute._flyok_index+'个点', fixedRoute)
  })
  fixedRoute.on(mars3d.EventType.stop, (event) => {
    console.log('路线走完了', fixedRoute)
  })
  fixedRoute.on(mars3d.EventType.end, (event) => {
    console.log('路线走完了', fixedRoute)
  })

问题

监听endItem事件 开始 触发了两次

以及 监听 stopend 均在路线结束的时候无法触发、或者是监听错了事件?

期望

监听endItem事件 开始的时候仅触发一次

muyao1987 commented 1 year ago

使用最新版本试下,之前已经修复过