projects/angular-cesium/src/lib/angular-cesium-widgets/models/polygon-edit-options.ts
Properties |
|
classificationType |
classificationType:
|
Type : any
|
Optional |
fill |
fill:
|
Type : boolean
|
Optional |
material |
material:
|
Type : any
|
Optional |
zIndex |
zIndex:
|
Type : any
|
Optional |
import { PolylineEditOptions } from './polyline-edit-options';
export interface PolygonProps {
material?: any;
fill?: boolean;
classificationType?: any;
zIndex?: any;
}
export interface PolygonEditOptions extends PolylineEditOptions {
polygonProps?: PolygonProps;
}