projects/angular-cesium/src/lib/angular-cesium-widgets/models/hippodrome-editor-oboservable.ts
Properties |
getCurrentPoints |
getCurrentPoints:
|
Type : function
|
getCurrentWidth |
getCurrentWidth:
|
Type : function
|
setManually |
setManually:
|
Type : function
|
disable |
disable:
|
Type : Function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:7
|
dispose |
dispose:
|
Type : Function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:5
|
enable |
enable:
|
Type : Function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:6
|
finishCreation |
finishCreation:
|
Type : function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:12
|
getEditValue |
getEditValue:
|
Type : function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:9
|
getLabels |
getLabels:
|
Type : function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:8
|
setLabelsRenderFn |
setLabelsRenderFn:
|
Type : function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:10
|
updateLabels |
updateLabels:
|
Type : function
|
Inherited from
EditorObservable
|
Defined in EditorObservable:11
|
import { EditPoint } from './edit-point';
import { EditorObservable } from './editor-observable';
import { HippodromeEditUpdate } from './hippodrome-edit-update';
import { PointProps } from './point-edit-options';
import { Cartesian3 } from '../../angular-cesium/models/cartesian3';
export class HippodromeEditorObservable extends EditorObservable<HippodromeEditUpdate> {
setManually: (firstPosition: Cartesian3,
secondPosition: Cartesian3,
widthMeters?: number,
firstPointProp?: PointProps,
secondPointProp?: PointProps) => void;
getCurrentPoints: () => EditPoint[];
getCurrentWidth: () => number; // meters
}