cesium-plot-js/src/interface.ts
2024-03-23 18:45:05 +08:00

32 lines
770 B
TypeScript

// @ts-ignore
import * as CesiumTypeOnly from 'cesium';
export type PolygonStyle = {
material?: CesiumTypeOnly.MaterialProperty;
outlineWidth?: number;
outlineMaterial?: CesiumTypeOnly.MaterialProperty;
};
export type LineStyle = {
material?: CesiumTypeOnly.Color;
lineWidth?: number;
};
export type State = 'drawing' | 'edit' | 'static' | 'animating';
export type GeometryStyle = PolygonStyle | LineStyle;
export type EventType = 'drawStart' | 'drawUpdate' | 'drawEnd' | 'editEnd' | 'editStart';
export type EventListener = (eventData?: any) => void;
export type VisibleAnimationOpts = {
duration?: number;
delay?: number;
callback?: () => void;
};
export type GrowthAnimationOpts = {
duration: number;
delay: number;
callback: Function;
};