@greenmice/ngx-cesium
Version:
Angular library for working with Cesium.
16 lines (15 loc) • 415 B
TypeScript
import { PolygonEditOptions } from './polygon-edit-options';
export interface RectangleProps {
material?: any;
fill?: boolean;
classificationType?: any;
zIndex?: any;
outline?: boolean;
outlineColor?: any;
outlineWidth?: number;
height?: number;
extrudedHeight?: number;
}
export interface RectangleEditOptions extends PolygonEditOptions {
rectangleProps?: RectangleProps;
}