guanqb
2024-01-02 432456dea4e9f370f76a42f7b341596012c3c38f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * @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