projects/angular-cesium/src/lib/angular-cesium-widgets/models/circle-editor-observable.ts
Properties |
getCenter |
getCenter:
|
Type : function
|
getRadius |
getRadius:
|
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 { EditorObservable } from './editor-observable';
import { Cartesian3 } from '../../angular-cesium/models/cartesian3';
import { CircleEditUpdate } from './circle-edit-update';
import { PointProps } from './point-edit-options';
import { EllipseProps } from './ellipse-edit-options';
export class CircleEditorObservable extends EditorObservable<CircleEditUpdate> {
setManually: (center: Cartesian3, radius: number, centerPointProp?: PointProps,
radiusPointProp?: PointProps, circleProp?: EllipseProps) => void;
getCenter: () => Cartesian3;
getRadius: () => number; // meters
}