jxdnsong
2023-04-05 be147d2a99d60a30b20fade742e85b45f06172ae
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
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2023-03-23 11:29:10
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-03-23 15:03:13
 * @FilePath: \forest-fire\src\utils\event\index.js
 * @Description: 
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
 */
 
const PlotEventType = {
    DRAW_START: 'drawStart',
    DRAW_STOP: 'drawStop',
    EDIT_START: 'editStart',
    EDIT_STOP: 'editEnd',
    DRAW_ANCHOR: 'drawAnchor',
    CREATE_ANCHOR: 'createAnchor',
    UPDATE_ANCHOR: 'updateAnchor',
    ANCHOR_MOVING: 'anchorMoving',
    EDIT_ANCHOR_STOP: 'editAnchorStop',
    CLEAR_ANCHOR: 'clearAnchor'
}
 
export {
    PlotEventType
}
 
export { default as PlotEvent } from './PlotEvent'