cesium-plot-js/src/interface.ts

16 lines
375 B
TypeScript
Raw Normal View History

import * as CesiumTypeOnly from '@examples/cesium';
export type PolygonStyle = {
fillColor?: CesiumTypeOnly.Color;
outlineWidth?: number;
outlineColor?: CesiumTypeOnly.Color;
};
export type LineStyle = {
color?: CesiumTypeOnly.Color;
lineWidth?: number;
};
2023-08-14 09:47:59 +00:00
export type State = 'drawing' | 'edit' | 'static';
export type GeometryStyle = PolygonStyle | LineStyle;