projects/angular-cesium/src/lib/angular-cesium-widgets/models/rectangle-edit-options.ts
Properties |
|
classificationType |
classificationType:
|
Type : any
|
Optional |
extrudedHeight |
extrudedHeight:
|
Type : number
|
Optional |
fill |
fill:
|
Type : boolean
|
Optional |
height |
height:
|
Type : number
|
Optional |
material |
material:
|
Type : any
|
Optional |
outline |
outline:
|
Type : boolean
|
Optional |
outlineColor |
outlineColor:
|
Type : any
|
Optional |
outlineWidth |
outlineWidth:
|
Type : number
|
Optional |
zIndex |
zIndex:
|
Type : any
|
Optional |
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;
}