| @@ -77,11 +77,10 @@ const PathEventType = { | |||
| const PlotEventType = { | |||
| DRAW_START: 'drawStart', | |||
| DRAW_ANCHOR: 'drawAnchor', | |||
| DRAW_MOVING: 'drawMoving', | |||
| DRAW_STOP: 'drawStop', | |||
| EDIT_START: 'editStart', | |||
| EDIT_STOP: 'editEnd', | |||
| DRAW_ANCHOR: 'drawAnchor', | |||
| CREATE_ANCHOR: 'createAnchor', | |||
| ANCHOR_MOVING: 'anchorMoving', | |||
| EDIT_ANCHOR_STOP: 'editAnchorStop', | |||
| @@ -63,7 +63,7 @@ class DrawTool { | |||
| return false | |||
| } | |||
| this._floatingAnchor && this._floatingAnchor.position.setValue(position) | |||
| this._plotEvent.fire(PlotEventType.DRAW_MOVING, position) | |||
| this._plotEvent.fire(PlotEventType.ANCHOR_MOVING, position) | |||
| } | |||
| /** | |||