projects/angular-cesium/src/lib/angular-cesium-widgets/models/hippodrome-edit-options.ts
Properties |
|
hippodromeProps |
hippodromeProps:
|
Type : HippodromeProps
|
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;
}