/*
|
* @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'
|