UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

68 lines (67 loc) 1.05 kB
export declare enum ReactiveLayerRenderEffect { /** * 设置了 layer 的业务状态 * * setLayerState */ state = 2048, /** * * 来自它端的消息, * * fromJSONValue */ json2 = 1024, /** * onAdd */ init = 512, /** * setPosition / translates */ translate = 256, /** * setAngle / rotates */ rotate = 128, /** * setScale... */ scale = 64, /** * ha */ child = 32, /** * setLocalLatLngs / setlocalBounds */ shape = 16, /** * svg Or rectange bound changed */ size = 8, /** * fromFormValue */ form = 4, /** * fromJSONValue */ json = 2, /** * */ none = 0 } /** * move,rotate,scale,shape,size */ export declare const TRANSFORM_EFFECT: number; /** * json,init,json2,form */ export declare const LAYER_DATA_UPDATE_EFFECTS: number; /** *transform,form,state */ export declare const MODEL_WS_UPDATE_EFFECT: number;