projects/angular-cesium/src/lib/angular-cesium-widgets/models/hippodrome-edit-options.ts
Properties |
|
classificationType |
classificationType:
|
Type : any
|
Optional |
fill |
fill:
|
Type : boolean
|
Optional |
material |
material:
|
Type : any
|
Optional |
outline |
outline:
|
Type : boolean
|
Optional |
outlineColor |
outlineColor:
|
Type : any
|
Optional |
outlineWidth |
outlineWidth:
|
Type : number
|
Optional |
shadows |
shadows:
|
Type : any
|
Optional |
width |
width:
|
Type : number
|
Optional |
zIndex |
zIndex:
|
Type : any
|
Optional |
import { EditorEditOptions } from './editor-edit-options';
export interface HippodromeProps {
width?: number;
material?: any;
outline?: boolean;
outlineColor?: any;
outlineWidth?: number;
fill?: boolean;
classificationType?: any;
zIndex?: any;
shadows?: any;
}
export interface HippodromeEditOptions extends EditorEditOptions {
hippodromeProps?: HippodromeProps;
}