/*
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2023-03-23 14:59:15
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2023-03-23 14:59:41
|
* @FilePath: \forest-fire\src\utils\event\PlotEvent.js
|
* @Description:
|
*
|
* Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
|
*/
|
/**
|
* @Author: Caven
|
* @Date: 2020-05-11 23:28:13
|
*/
|
|
import { PlotEventType } from './index'
|
import Event from './Event'
|
|
class PlotEvent extends Event {
|
constructor() {
|
super()
|
}
|
|
/**
|
*
|
* @private
|
*/
|
_registerEvent () {
|
Object.keys(PlotEventType).forEach(key => {
|
let type = PlotEventType[key]
|
this._cache[type] = new global.DC.Namespace.Cesium.Event()
|
})
|
}
|
}
|
|
export default PlotEvent
|