earthsdk3 3.0.6-beta.1 → 3.0.6-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/earthsdk3.cjs +386 -267
- package/dist/earthsdk3.js +386 -267
- package/dist/earthsdk3.mjs +389 -268
- package/dist/types/ESJTypes/properties/ESJEnvironmentMapManager.d.ts +12 -0
- package/dist/types/ESJTypes/properties/index.d.ts +1 -0
- package/dist/types/ESObjectManager/index.d.ts +5 -0
- package/dist/types/ESObjects/base/ESGeoVector.d.ts +3 -1
- package/dist/types/ESObjects/base/ESObjectWithLocation.d.ts +1 -0
- package/dist/types/ESObjects/base/ESSceneObject/index.d.ts +7 -1
- package/dist/types/ESObjects/base/ESVisualObject.d.ts +4 -1
- package/dist/types/ESObjects/general/ES3DTileset/index.d.ts +19 -3
- package/dist/types/ESObjects/general/ESCameraVisibleRange.d.ts +2 -0
- package/dist/types/ESObjects/general/ESClassification.d.ts +2 -1
- package/dist/types/ESObjects/general/ESDirectionMeasurement.d.ts +2 -0
- package/dist/types/ESObjects/general/ESGeoDiv/index.d.ts +1 -3
- package/dist/types/ESObjects/general/ESGeoJson/index.d.ts +1 -1
- package/dist/types/ESObjects/general/ESGeoLineString.d.ts +2 -1
- package/dist/types/ESObjects/general/ESGeoPolygon.d.ts +2 -1
- package/dist/types/ESObjects/general/ESGeoRectangle.d.ts +2 -1
- package/dist/types/ESObjects/general/ESGltfModel.d.ts +13 -1
- package/dist/types/ESObjects/general/ESHeightLimitAnalysis.d.ts +1 -3
- package/dist/types/ESObjects/general/ESHeightMeasurement.d.ts +2 -0
- package/dist/types/ESObjects/general/ESHole.d.ts +1 -2
- package/dist/types/ESObjects/general/ESHumanPoi.d.ts +1 -2
- package/dist/types/ESObjects/general/ESImageryLayer/index.d.ts +4 -4
- package/dist/types/ESObjects/general/ESImageryLayer/types.d.ts +5 -5
- package/dist/types/ESObjects/general/ESLocalCircle.d.ts +2 -1
- package/dist/types/ESObjects/general/ESMsTileset/index.d.ts +11 -8
- package/dist/types/ESObjects/general/ESPipeFence.d.ts +2 -1
- package/dist/types/ESObjects/general/ESPipeserTileset.d.ts +4 -0
- package/dist/types/ESObjects/general/ESPolygonFence.d.ts +2 -1
- package/dist/types/ESObjects/general/ESRectangle.d.ts +2 -1
- package/dist/types/ESObjects/general/ESRtsFeatureEditing/index.d.ts +14 -16
- package/dist/types/ESObjects/general/ESRtsTileset/index.d.ts +14 -10
- package/dist/types/ESObjects/general/ESTerrainLayer.d.ts +4 -1
- package/dist/types/ESObjects/general/ESTextLabel.d.ts +0 -1
- package/dist/types/ESObjects/general/ESVideoFusion.d.ts +2 -1
- package/dist/types/ESObjects/general/ESViewShed.d.ts +2 -0
- package/dist/types/ESObjects/general/ESVisibilityAnalysis.d.ts +2 -1
- package/dist/types/utils/SceneTrees/defaultLight122FromEnvironmentMapManager.d.ts +8 -0
- package/dist/types/utils/SceneTrees/index.d.ts +1 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/registerCreatedEventUpdate.d.ts +3 -0
- package/dist/types/utils/registerEventUpdate.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ESJVector4D } from "./DataType";
|
|
2
|
+
export type ESJEnvironmentMapManagerType = {
|
|
3
|
+
atmosphereScatteringIntensity?: number;
|
|
4
|
+
brightness?: number;
|
|
5
|
+
enabled?: boolean;
|
|
6
|
+
gamma?: number;
|
|
7
|
+
groundAlbedo?: number;
|
|
8
|
+
groundColor?: ESJVector4D;
|
|
9
|
+
maximumSecondsDifference?: number;
|
|
10
|
+
maximumPositionEpsilon?: number;
|
|
11
|
+
saturation?: number;
|
|
12
|
+
};
|
|
@@ -22,6 +22,11 @@ export declare class ESObjectsManager extends Destroyable {
|
|
|
22
22
|
* @returns
|
|
23
23
|
*/
|
|
24
24
|
getSceneObjectById(id: string): ESSceneObject | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* 获取场景对象
|
|
27
|
+
* @param option 可以是id或者ESSceneObject名称,为空则返回所有对象
|
|
28
|
+
* @returns ESSceneObject | ESSceneObject[] | undefined
|
|
29
|
+
*/
|
|
25
30
|
getSceneObject(option?: string): ESSceneObject | ESSceneObject[] | undefined;
|
|
26
31
|
get $refs(): {
|
|
27
32
|
[k: string]: ESSceneObject | undefined;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { JsonValue, UniteChanged } from "xbsj-base";
|
|
2
|
-
import { ESJFillStyle, ESJPointStyle, ESJRenderType, ESJStrokeStyle, ESJVector3D, ESJVector3DArray } from "../../ESJTypes";
|
|
2
|
+
import { ESJEditingBindModeType, ESJFillStyle, ESJPointStyle, ESJRenderType, ESJStrokeStyle, ESJVector3D, ESJVector3DArray } from "../../ESJTypes";
|
|
3
3
|
import { ESVisualObject } from "./ESVisualObject";
|
|
4
4
|
/**
|
|
5
5
|
* https://www.wolai.com/earthsdk/u1Uc89HHrBjiGGB67BdFLc
|
|
6
6
|
*/
|
|
7
7
|
export declare abstract class ESGeoVector extends ESVisualObject {
|
|
8
8
|
static supportEditingModes: string[];
|
|
9
|
+
editingBindMode: ESJEditingBindModeType;
|
|
10
|
+
updateEditing(): void;
|
|
9
11
|
protected _area: import("xbsj-base").ReactiveVariable<number>;
|
|
10
12
|
get area(): number;
|
|
11
13
|
get areaChanged(): import("xbsj-base").Listener<[number, number]>;
|
|
@@ -2,6 +2,7 @@ import { ESJVector3D } from "../../ESJTypes";
|
|
|
2
2
|
import { Event, Listener, UniteChanged } from "xbsj-base";
|
|
3
3
|
import { ESVisualObject } from "./ESVisualObject";
|
|
4
4
|
export declare abstract class ESObjectWithLocation extends ESVisualObject {
|
|
5
|
+
updateEditing(): void;
|
|
5
6
|
private _statusDis;
|
|
6
7
|
get statusDis(): boolean;
|
|
7
8
|
get statusDisChanged(): Listener<[boolean, boolean]>;
|
|
@@ -76,8 +76,14 @@ export declare abstract class ESSceneObject extends Destroyable {
|
|
|
76
76
|
static defaults: {};
|
|
77
77
|
viewer: ESViewer | undefined;
|
|
78
78
|
viewerChanged: Event<[ESViewer | undefined]>;
|
|
79
|
+
/**
|
|
80
|
+
* 是否是组合类
|
|
81
|
+
* 组合类是指该类的实例不需要自动更新也不需要创建销毁,不用给ue发送这个对象的消息,都有组合类去处理
|
|
82
|
+
* 如果是组合类,那么需要指定主类是哪个,用于指定编辑对象,设置属性mainClass
|
|
83
|
+
*/
|
|
79
84
|
combinationClass: boolean;
|
|
80
|
-
|
|
85
|
+
mainClass: ESSceneObject | undefined;
|
|
86
|
+
getMainClass(): ESSceneObject;
|
|
81
87
|
protected _innerGetJson(ignoreDefaults?: boolean): JsonValue;
|
|
82
88
|
protected _innerSetJson(value: JsonValue, filterKeys?: string[], partialSetting?: boolean): void;
|
|
83
89
|
get json(): JsonValue;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ESJEditingModeType, ESJFlyInParam, ESJFlyToParam, ESJPickedInfo } from "../../ESJTypes";
|
|
1
|
+
import { ESJEditingBindModeType, ESJEditingModeType, ESJFlyInParam, ESJFlyToParam, ESJPickedInfo } from "../../ESJTypes";
|
|
2
2
|
import { Event, Listener, UniteChanged } from "xbsj-base";
|
|
3
3
|
import { ESSceneObject } from "./ESSceneObject";
|
|
4
4
|
import { ESViewer } from "../../ESViewer";
|
|
@@ -12,6 +12,9 @@ export declare abstract class ESVisualObject extends ESSceneObject {
|
|
|
12
12
|
get editing(): boolean;
|
|
13
13
|
set editing(value: boolean);
|
|
14
14
|
get editingChanged(): Listener<[boolean, boolean]>;
|
|
15
|
+
editingBindMode: ESJEditingBindModeType;
|
|
16
|
+
updateEditing(): void;
|
|
17
|
+
constructor(id?: string);
|
|
15
18
|
/**
|
|
16
19
|
* 弃用变量管理器
|
|
17
20
|
* 请勿使用该属性
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ESJColor, ESJMaterialType, ESJResource, ESJsonObjectType, ESJVector2D, ESJVector3D, ESJVector4D } from "../../../ESJTypes";
|
|
1
|
+
import { ESJColor, ESJEnvironmentMapManagerType, ESJMaterialType, ESJResource, ESJsonObjectType, ESJVector2D, ESJVector3D, ESJVector4D } from "../../../ESJTypes";
|
|
2
2
|
import { ESVisualObject } from "../../../ESObjects";
|
|
3
3
|
import { Event, JsonValue, UniteChanged } from "xbsj-base";
|
|
4
4
|
import { ESJFeatureStyleType, FeatureColorJsonType, FeatureVisableJsonType } from "./type";
|
|
@@ -20,10 +20,14 @@ export declare class ES3DTileset extends ESVisualObject {
|
|
|
20
20
|
offset: import("xbsj-base").ReactiveVariable<ESJVector3D | undefined>;
|
|
21
21
|
rotation: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
22
22
|
czmImageBasedLightingFactor: import("xbsj-base").ReactiveVariable<ESJVector2D>;
|
|
23
|
+
czmEnvironmentMapManager: import("xbsj-base").ReactiveVariable<ESJEnvironmentMapManagerType | undefined>;
|
|
23
24
|
/**
|
|
24
|
-
* @deprecated czmLuminanceAtZenith已弃用,请使用
|
|
25
|
+
* @deprecated czmLuminanceAtZenith已弃用,请使用czmEnvironmentMapManager代替
|
|
25
26
|
*/
|
|
26
27
|
czmLuminanceAtZenith: number;
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated czmAtmosphereScatteringIntensity已弃用,请使用czmEnvironmentMapManager代替
|
|
30
|
+
*/
|
|
27
31
|
czmAtmosphereScatteringIntensity: number;
|
|
28
32
|
czmMaximumMemoryUsage: number;
|
|
29
33
|
czmClassificationType: string;
|
|
@@ -40,6 +44,7 @@ export declare class ES3DTileset extends ESVisualObject {
|
|
|
40
44
|
clippingPlaneEdgeWidth: number;
|
|
41
45
|
materialParams: ESJsonObjectType;
|
|
42
46
|
allowPicking: boolean;
|
|
47
|
+
materialOverrideMap: import("xbsj-base").ReactiveVariable<undefined>;
|
|
43
48
|
show: boolean;
|
|
44
49
|
collision: boolean;
|
|
45
50
|
flyToParam: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJFlyToParam | undefined>;
|
|
@@ -53,6 +58,7 @@ export declare class ES3DTileset extends ESVisualObject {
|
|
|
53
58
|
toDestroyFuncStr: string | undefined;
|
|
54
59
|
};
|
|
55
60
|
static supportEditingModes: string[];
|
|
61
|
+
updateEditing(): void;
|
|
56
62
|
private _refreshTilesetEvent;
|
|
57
63
|
get refreshTilesetEvent(): Event<[]>;
|
|
58
64
|
refreshTileset(): void;
|
|
@@ -213,6 +219,10 @@ export declare class ES3DTileset extends ESVisualObject {
|
|
|
213
219
|
get excavateId(): string[];
|
|
214
220
|
set excavateId(value: string[]);
|
|
215
221
|
get excavateIdChanged(): import("xbsj-base").Listener<[string[], string[]]>;
|
|
222
|
+
/**
|
|
223
|
+
* 仅Cesium引擎生效
|
|
224
|
+
*/
|
|
225
|
+
setLight122(): void;
|
|
216
226
|
static defaults: {
|
|
217
227
|
url: string;
|
|
218
228
|
actorTag: string;
|
|
@@ -223,6 +233,7 @@ export declare class ES3DTileset extends ESVisualObject {
|
|
|
223
233
|
baseColor: number[];
|
|
224
234
|
};
|
|
225
235
|
cacheBytes: number;
|
|
236
|
+
materialOverrideMap: {};
|
|
226
237
|
show: boolean;
|
|
227
238
|
collision: boolean;
|
|
228
239
|
allowPicking: boolean;
|
|
@@ -252,10 +263,14 @@ export declare namespace ES3DTileset {
|
|
|
252
263
|
offset: import("xbsj-base").ReactiveVariable<ESJVector3D | undefined>;
|
|
253
264
|
rotation: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
254
265
|
czmImageBasedLightingFactor: import("xbsj-base").ReactiveVariable<ESJVector2D>;
|
|
266
|
+
czmEnvironmentMapManager: import("xbsj-base").ReactiveVariable<ESJEnvironmentMapManagerType | undefined>;
|
|
255
267
|
/**
|
|
256
|
-
* @deprecated czmLuminanceAtZenith已弃用,请使用
|
|
268
|
+
* @deprecated czmLuminanceAtZenith已弃用,请使用czmEnvironmentMapManager代替
|
|
257
269
|
*/
|
|
258
270
|
czmLuminanceAtZenith: number;
|
|
271
|
+
/**
|
|
272
|
+
* @deprecated czmAtmosphereScatteringIntensity已弃用,请使用czmEnvironmentMapManager代替
|
|
273
|
+
*/
|
|
259
274
|
czmAtmosphereScatteringIntensity: number;
|
|
260
275
|
czmMaximumMemoryUsage: number;
|
|
261
276
|
czmClassificationType: string;
|
|
@@ -272,6 +287,7 @@ export declare namespace ES3DTileset {
|
|
|
272
287
|
clippingPlaneEdgeWidth: number;
|
|
273
288
|
materialParams: ESJsonObjectType;
|
|
274
289
|
allowPicking: boolean;
|
|
290
|
+
materialOverrideMap: import("xbsj-base").ReactiveVariable<undefined>;
|
|
275
291
|
show: boolean;
|
|
276
292
|
collision: boolean;
|
|
277
293
|
flyToParam: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJFlyToParam | undefined>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
|
+
import { ESJEditingBindModeType } from "../../ESJTypes";
|
|
2
3
|
import { ESObjectWithLocation } from "../base";
|
|
3
4
|
/**
|
|
4
5
|
* https://www.wolai.com/earthsdk/uraiJ6nPZBuNTiNMsx78vP
|
|
@@ -30,6 +31,7 @@ export declare class ESCameraVisibleRange extends ESObjectWithLocation {
|
|
|
30
31
|
toDestroyFuncStr: string | undefined;
|
|
31
32
|
};
|
|
32
33
|
constructor(id?: string);
|
|
34
|
+
editingBindMode: ESJEditingBindModeType;
|
|
33
35
|
static defaults: {
|
|
34
36
|
fov: number;
|
|
35
37
|
aspectRatio: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
|
-
import { ESJFillStyle } from "../../ESJTypes";
|
|
2
|
+
import { ESJEditingBindModeType, ESJFillStyle } from "../../ESJTypes";
|
|
3
3
|
import { ESGeoVector } from "../base";
|
|
4
4
|
export declare class ESClassification extends ESGeoVector {
|
|
5
5
|
static readonly type: string;
|
|
@@ -28,6 +28,7 @@ export declare class ESClassification extends ESGeoVector {
|
|
|
28
28
|
};
|
|
29
29
|
constructor(id?: string);
|
|
30
30
|
static supportEditingModes: string[];
|
|
31
|
+
editingBindMode: ESJEditingBindModeType;
|
|
31
32
|
static defaults: {
|
|
32
33
|
fillStyle: ESJFillStyle;
|
|
33
34
|
filled: boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
2
|
import { ESGeoVector } from "../base";
|
|
3
|
+
import { ESJEditingBindModeType } from "../../ESJTypes";
|
|
3
4
|
/**
|
|
4
5
|
* https://www.wolai.com/earthsdk/37rp47JvTtZqEJESf5AuQu
|
|
5
6
|
*/
|
|
@@ -30,6 +31,7 @@ export declare class ESDirectionMeasurement extends ESGeoVector {
|
|
|
30
31
|
get strokeWidth(): number;
|
|
31
32
|
set strokeWidth(value: number);
|
|
32
33
|
static supportEditingModes: string[];
|
|
34
|
+
editingBindMode: ESJEditingBindModeType;
|
|
33
35
|
constructor(id?: string);
|
|
34
36
|
static defaults: {
|
|
35
37
|
points: import("../../ESJTypes").ESJVector3DArray;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ESJVector2D, ESJWidgetEventInfo } from "../../../ESJTypes";
|
|
2
2
|
import { Event, UniteChanged } from "xbsj-base";
|
|
3
|
-
import { ESObjectWithLocation
|
|
3
|
+
import { ESObjectWithLocation } from "../../base";
|
|
4
4
|
import { ESGeoDivInstanceClass } from "./mds";
|
|
5
5
|
/**
|
|
6
6
|
* https://www.wolai.com/earthsdk/e17QPxZkVnG3ujXj8sJ2un
|
|
@@ -9,8 +9,6 @@ export declare class ESGeoDiv extends ESObjectWithLocation {
|
|
|
9
9
|
static readonly type: string;
|
|
10
10
|
get typeName(): string;
|
|
11
11
|
combinationClass: boolean;
|
|
12
|
-
mainClass: ESSceneObject | undefined;
|
|
13
|
-
getMainClass(): ESSceneObject;
|
|
14
12
|
get defaultProps(): {
|
|
15
13
|
opacity: number;
|
|
16
14
|
anchor: import("xbsj-base").ReactiveVariable<[leftRatio: number, topRatio: number]>;
|
|
@@ -127,7 +127,7 @@ export declare class ESGeoJson extends ESVisualObject {
|
|
|
127
127
|
dataSource: (NumberProperty | EnumProperty<string> | JsonProperty<string>)[];
|
|
128
128
|
location: never[];
|
|
129
129
|
coordinate: never[];
|
|
130
|
-
style: (GroupProperty | StringProperty | NumberProperty | BooleanProperty | EnumProperty<string> | ColorProperty |
|
|
130
|
+
style: (GroupProperty | StringProperty | NumberProperty | BooleanProperty | EnumProperty<string> | ColorProperty | JsonProperty<string> | Number2Property | JsonProperty<{}>)[];
|
|
131
131
|
};
|
|
132
132
|
getProperties(language?: string): import("../../../ESJTypes").Property[];
|
|
133
133
|
get strokeWidth(): number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
2
|
import { ESGeoVector } from "../base";
|
|
3
|
-
import { BooleanProperty, ColorProperty, EnumProperty, ESJStrokeStyle, GroupProperty, NumberProperty } from "../../ESJTypes";
|
|
3
|
+
import { BooleanProperty, ColorProperty, EnumProperty, ESJEditingBindModeType, ESJStrokeStyle, GroupProperty, NumberProperty } from "../../ESJTypes";
|
|
4
4
|
/**
|
|
5
5
|
* https://www.wolai.com/earthsdk/wAn2bN9HA2mo8uw56dPa76
|
|
6
6
|
*/
|
|
@@ -32,6 +32,7 @@ export declare class ESGeoLineString extends ESGeoVector {
|
|
|
32
32
|
get distance(): number;
|
|
33
33
|
get distanceChanged(): import("xbsj-base").Listener<[number, number]>;
|
|
34
34
|
static supportEditingModes: string[];
|
|
35
|
+
editingBindMode: ESJEditingBindModeType;
|
|
35
36
|
static defaults: {
|
|
36
37
|
strokeStyle: ESJStrokeStyle;
|
|
37
38
|
stroked: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ESJFillStyle, ESJStrokeStyle } from "../../ESJTypes";
|
|
1
|
+
import { ESJEditingBindModeType, ESJFillStyle, ESJStrokeStyle } from "../../ESJTypes";
|
|
2
2
|
import { ESGeoVector } from "../base/ESGeoVector";
|
|
3
3
|
import { UniteChanged } from "xbsj-base";
|
|
4
4
|
export declare class ESGeoPolygon extends ESGeoVector {
|
|
@@ -26,6 +26,7 @@ export declare class ESGeoPolygon extends ESGeoVector {
|
|
|
26
26
|
toDestroyFuncStr: string | undefined;
|
|
27
27
|
};
|
|
28
28
|
static supportEditingModes: string[];
|
|
29
|
+
editingBindMode: ESJEditingBindModeType;
|
|
29
30
|
static defaults: {
|
|
30
31
|
fillStyle: ESJFillStyle;
|
|
31
32
|
strokeStyle: ESJStrokeStyle;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
2
|
import { ESGeoVector } from "../base";
|
|
3
|
-
import { ESJVector3DArray } from "../../ESJTypes";
|
|
3
|
+
import { ESJEditingBindModeType, ESJVector3DArray } from "../../ESJTypes";
|
|
4
4
|
/**
|
|
5
5
|
* https://www.wolai.com/earthsdk/pxKbJ5g7Sf59UJgqwZpyzc
|
|
6
6
|
*/
|
|
@@ -30,6 +30,7 @@ export declare class ESGeoRectangle extends ESGeoVector {
|
|
|
30
30
|
};
|
|
31
31
|
toPolygon(): ESJVector3DArray | undefined;
|
|
32
32
|
static supportEditingModes: string[];
|
|
33
|
+
editingBindMode: ESJEditingBindModeType;
|
|
33
34
|
_updateArea(): void;
|
|
34
35
|
_updatePerimeter(): void;
|
|
35
36
|
constructor(id?: string);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Event, SceneObjectKey, ReactivePropsToNativePropsAndChanged } from "xbsj-base";
|
|
2
2
|
import { ESObjectWithLocation } from "../base";
|
|
3
|
-
import { ESJColor, ESJMaterialType, ESJResource, ESJVector2D, ESJVector3D } from "../../ESJTypes";
|
|
3
|
+
import { ESJColor, ESJEnvironmentMapManagerType, ESJMaterialType, ESJResource, ESJVector2D, ESJVector3D } from "../../ESJTypes";
|
|
4
4
|
import { ESJInstances } from "../../ESJTypes/properties/ESJInstances";
|
|
5
5
|
type ModelNodeTransformation = {
|
|
6
6
|
translationX: number;
|
|
@@ -28,7 +28,11 @@ export declare class ESGltfModel extends ESObjectWithLocation {
|
|
|
28
28
|
allowPicking: boolean;
|
|
29
29
|
instances: import("xbsj-base").ReactiveVariable<ESJInstances | undefined>;
|
|
30
30
|
czmImageBasedLightingFactor: import("xbsj-base").ReactiveVariable<ESJVector2D>;
|
|
31
|
+
/**
|
|
32
|
+
* @deprecated 已弃用,请使用czmEnvironmentMapManager代替
|
|
33
|
+
*/
|
|
31
34
|
czmAtmosphereScatteringIntensity: number;
|
|
35
|
+
czmEnvironmentMapManager: import("xbsj-base").ReactiveVariable<ESJEnvironmentMapManagerType | undefined>;
|
|
32
36
|
position: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
33
37
|
rotation: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
34
38
|
scale: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
@@ -79,6 +83,10 @@ export declare class ESGltfModel extends ESObjectWithLocation {
|
|
|
79
83
|
private _setMaterialEvent;
|
|
80
84
|
get setMaterialEvent(): Event<["default" | ESJMaterialType]>;
|
|
81
85
|
setMaterial(options: ESJMaterialType | 'default'): void;
|
|
86
|
+
/**
|
|
87
|
+
* 仅Cesium引擎生效
|
|
88
|
+
*/
|
|
89
|
+
setLight122(): void;
|
|
82
90
|
static defaults: {
|
|
83
91
|
url: string;
|
|
84
92
|
instances: never[];
|
|
@@ -110,7 +118,11 @@ export declare namespace ESGltfModel {
|
|
|
110
118
|
allowPicking: boolean;
|
|
111
119
|
instances: import("xbsj-base").ReactiveVariable<ESJInstances | undefined>;
|
|
112
120
|
czmImageBasedLightingFactor: import("xbsj-base").ReactiveVariable<ESJVector2D>;
|
|
121
|
+
/**
|
|
122
|
+
* @deprecated 已弃用,请使用czmEnvironmentMapManager代替
|
|
123
|
+
*/
|
|
113
124
|
czmAtmosphereScatteringIntensity: number;
|
|
125
|
+
czmEnvironmentMapManager: import("xbsj-base").ReactiveVariable<ESJEnvironmentMapManagerType | undefined>;
|
|
114
126
|
position: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
115
127
|
rotation: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
116
128
|
scale: import("xbsj-base").ReactiveVariable<ESJVector3D>;
|
|
@@ -3,7 +3,6 @@ import { ESGeoExtrudedPolygon } from "./ESGeoExtrudedPolygon";
|
|
|
3
3
|
import { ESGeoPolygon } from "./ESGeoPolygon";
|
|
4
4
|
import { UniteChanged, JsonValue } from "xbsj-base";
|
|
5
5
|
import { ColorProperty, EnumProperty, BooleanProperty, GroupProperty, NumberProperty } from "../../ESJTypes";
|
|
6
|
-
import { ESSceneObject } from "../base";
|
|
7
6
|
/**
|
|
8
7
|
* https://c0yh9tnn0na.feishu.cn/docx/CKSfdDcwtoVPCtxgolkclEYZn9c
|
|
9
8
|
*/
|
|
@@ -37,13 +36,12 @@ export declare class ESHeightLimitAnalysis extends ESGeoPolygon {
|
|
|
37
36
|
};
|
|
38
37
|
get json(): JsonValue;
|
|
39
38
|
set json(value: JsonValue);
|
|
40
|
-
combinationClass: boolean;
|
|
41
|
-
getMainClass(): ESSceneObject | undefined;
|
|
42
39
|
static supportEditingModes: string[];
|
|
43
40
|
private _classification;
|
|
44
41
|
get classification(): ESClassification;
|
|
45
42
|
private _geoExtrudedPolygon;
|
|
46
43
|
get geoExtrudedPolygon(): ESGeoExtrudedPolygon;
|
|
44
|
+
combinationClass: boolean;
|
|
47
45
|
getESProperties(): {
|
|
48
46
|
defaultMenu: string;
|
|
49
47
|
basic: import("../../ESJTypes").Property[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
2
|
import { ESGeoVector } from "../base";
|
|
3
|
+
import { ESJEditingBindModeType } from "../../ESJTypes";
|
|
3
4
|
/**
|
|
4
5
|
* https://www.wolai.com/earthsdk/8nkhuLbWJ44X4sV5hD5HPU
|
|
5
6
|
*/
|
|
@@ -28,6 +29,7 @@ export declare class ESHeightMeasurement extends ESGeoVector {
|
|
|
28
29
|
toDestroyFuncStr: string | undefined;
|
|
29
30
|
};
|
|
30
31
|
static supportEditingModes: string[];
|
|
32
|
+
editingBindMode: ESJEditingBindModeType;
|
|
31
33
|
constructor(id?: string);
|
|
32
34
|
static defaults: {
|
|
33
35
|
points: import("../../ESJTypes").ESJVector3DArray;
|
|
@@ -7,8 +7,6 @@ import { ESPit } from "./ESPit";
|
|
|
7
7
|
export declare class ESHole extends ESPit {
|
|
8
8
|
static readonly type: string;
|
|
9
9
|
get typeName(): string;
|
|
10
|
-
combinationClass: boolean;
|
|
11
|
-
getMainClass(): ESPit;
|
|
12
10
|
get defaultProps(): {
|
|
13
11
|
depth: number;
|
|
14
12
|
sideImage: import("xbsj-base").ReactiveVariable<import("./ESPit").ESJTexture>;
|
|
@@ -40,6 +38,7 @@ export declare class ESHole extends ESPit {
|
|
|
40
38
|
private _excavate;
|
|
41
39
|
get excavate(): ESExcavate;
|
|
42
40
|
private _pit;
|
|
41
|
+
combinationClass: boolean;
|
|
43
42
|
constructor(id?: string);
|
|
44
43
|
}
|
|
45
44
|
export declare namespace ESHole {
|
|
@@ -8,8 +8,6 @@ import { ESPoi2D } from "./ESPoi2D";
|
|
|
8
8
|
export declare class ESHumanPoi extends ESHuman {
|
|
9
9
|
static readonly type: string;
|
|
10
10
|
get typeName(): string;
|
|
11
|
-
combinationClass: boolean;
|
|
12
|
-
getMainClass(): ESHuman;
|
|
13
11
|
get defaultProps(): {
|
|
14
12
|
mode: string;
|
|
15
13
|
animation: string;
|
|
@@ -48,6 +46,7 @@ export declare class ESHumanPoi extends ESHuman {
|
|
|
48
46
|
get human(): ESHuman;
|
|
49
47
|
private _poi;
|
|
50
48
|
get poi(): ESPoi2D;
|
|
49
|
+
combinationClass: boolean;
|
|
51
50
|
getESProperties(): {
|
|
52
51
|
basic: import("../../ESJTypes").Property[];
|
|
53
52
|
defaultMenu: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ESJResource, ESJVector4D } from "../../../ESJTypes";
|
|
2
2
|
import { ESVisualObject } from "../../../ESObjects";
|
|
3
3
|
import { UniteChanged } from "xbsj-base";
|
|
4
|
-
import {
|
|
4
|
+
import { ESJSplitDirectionType, ESImageryLayerOptionsType } from "./types";
|
|
5
5
|
/**
|
|
6
6
|
* https://www.wolai.com/earthsdk/sTpXjiETeVPfEwGfqDqUUw
|
|
7
7
|
* https://c0yh9tnn0na.feishu.cn/wiki/QFTgwgCwHiG29bknJ1QcP5hJnMf
|
|
@@ -20,7 +20,7 @@ export declare class ESImageryLayer extends ESVisualObject {
|
|
|
20
20
|
minimumLevel: number;
|
|
21
21
|
targetID: string | undefined;
|
|
22
22
|
opacity: number;
|
|
23
|
-
czmSplitDirection:
|
|
23
|
+
czmSplitDirection: ESJSplitDirectionType;
|
|
24
24
|
czmAlpha: number;
|
|
25
25
|
czmBrightness: number;
|
|
26
26
|
czmContrast: number;
|
|
@@ -51,7 +51,7 @@ export declare class ESImageryLayer extends ESVisualObject {
|
|
|
51
51
|
maximumLevel: number;
|
|
52
52
|
targetID: string;
|
|
53
53
|
opacity: number;
|
|
54
|
-
czmSplitDirection:
|
|
54
|
+
czmSplitDirection: ESJSplitDirectionType;
|
|
55
55
|
czmSplitDirectionEnum: [name: string, value: string][];
|
|
56
56
|
czmAlpha: number;
|
|
57
57
|
czmBrightness: number;
|
|
@@ -90,7 +90,7 @@ export declare namespace ESImageryLayer {
|
|
|
90
90
|
minimumLevel: number;
|
|
91
91
|
targetID: string | undefined;
|
|
92
92
|
opacity: number;
|
|
93
|
-
czmSplitDirection:
|
|
93
|
+
czmSplitDirection: ESJSplitDirectionType;
|
|
94
94
|
czmAlpha: number;
|
|
95
95
|
czmBrightness: number;
|
|
96
96
|
czmContrast: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { JsonValue } from "xbsj-base";
|
|
2
|
-
export type
|
|
3
|
-
export declare type
|
|
2
|
+
export type ESJSplitDirectionType = 'LEFT' | 'NONE' | 'RIGHT';
|
|
3
|
+
export declare type ESJTimeIntervalCollectionJsonType = {
|
|
4
4
|
type: 'fromIso8601';
|
|
5
5
|
iso8601: string;
|
|
6
6
|
isStartIncluded?: boolean;
|
|
@@ -81,7 +81,7 @@ export type ESImageryLayerOptionsType = {
|
|
|
81
81
|
srs?: string;
|
|
82
82
|
credit?: string;
|
|
83
83
|
subdomains?: string | string[];
|
|
84
|
-
times?:
|
|
84
|
+
times?: ESJTimeIntervalCollectionJsonType;
|
|
85
85
|
getFeatureInfoUrl?: string;
|
|
86
86
|
} | {
|
|
87
87
|
type: 'wmts';
|
|
@@ -90,7 +90,7 @@ export type ESImageryLayerOptionsType = {
|
|
|
90
90
|
style: string;
|
|
91
91
|
tileMatrixSetID: string;
|
|
92
92
|
tileMatrixLabels?: string[];
|
|
93
|
-
times?:
|
|
93
|
+
times?: ESJTimeIntervalCollectionJsonType;
|
|
94
94
|
dimensions?: JsonValue;
|
|
95
95
|
tileWidth?: number;
|
|
96
96
|
tileHeight?: number;
|
|
@@ -103,4 +103,4 @@ export type ESImageryLayerOptionsType = {
|
|
|
103
103
|
accessToken?: string;
|
|
104
104
|
server?: string;
|
|
105
105
|
};
|
|
106
|
-
export declare const optionsStr = "\n# \u58F0\u660E\u6587\u4EF6\n### options \u7C7B\u578B\n```javascript\n export type ESImageryLayerOptionsType =\n {\n \"type\": \"tms\";\n \"fileExtension\"?: string; \n \"credit\"?: string;\n \"tilingScheme\"?: ESTilingSchemaJsonType; \n \"ellipsoid\"?: [x: number, y: number, z: number]; \n \"tileWidth\"?: number; \n \"tileHeight\"?: number; \n \"flipXY\"?: boolean; \n } |\n {\n type: 'xyz';\n subdomains?: string | string[];\n credit?: string;\n tilingScheme?: ESTilingSchemaJsonType;\n ellipsoid?: [x: number, y: number, z: number]; \n tileWidth?: number; \n tileHeight?: number; \n hasAlphaChannel?: boolean;\n pickFeaturesUrl?: string;\n enablePickFeatures?: boolean;\n urlSchemeZeroPadding?: JsonValue,\n customTags?: { [k: string]: string };\n } |\n {\n type: 'wms';\n layers: string;\n parameters?: JsonValue,\n getFeatureInfoParameters?: JsonValue,\n enablePickFeatures?: boolean,\n tilingScheme?: ESTilingSchemaJsonType; \n ellipsoid?: [x: number, y: number, z: number];\n tileWidth?: number; \n tileHeight?: number; \n crs?: string,\n srs?: string,\n credit?: string;\n subdomains?: string | string[]; \n times?:
|
|
106
|
+
export declare const optionsStr = "\n# \u58F0\u660E\u6587\u4EF6\n### options \u7C7B\u578B\n```javascript\n export type ESImageryLayerOptionsType =\n {\n \"type\": \"tms\";\n \"fileExtension\"?: string; \n \"credit\"?: string;\n \"tilingScheme\"?: ESTilingSchemaJsonType; \n \"ellipsoid\"?: [x: number, y: number, z: number]; \n \"tileWidth\"?: number; \n \"tileHeight\"?: number; \n \"flipXY\"?: boolean; \n } |\n {\n type: 'xyz';\n subdomains?: string | string[];\n credit?: string;\n tilingScheme?: ESTilingSchemaJsonType;\n ellipsoid?: [x: number, y: number, z: number]; \n tileWidth?: number; \n tileHeight?: number; \n hasAlphaChannel?: boolean;\n pickFeaturesUrl?: string;\n enablePickFeatures?: boolean;\n urlSchemeZeroPadding?: JsonValue,\n customTags?: { [k: string]: string };\n } |\n {\n type: 'wms';\n layers: string;\n parameters?: JsonValue,\n getFeatureInfoParameters?: JsonValue,\n enablePickFeatures?: boolean,\n tilingScheme?: ESTilingSchemaJsonType; \n ellipsoid?: [x: number, y: number, z: number];\n tileWidth?: number; \n tileHeight?: number; \n crs?: string,\n srs?: string,\n credit?: string;\n subdomains?: string | string[]; \n times?: ESJTimeIntervalCollectionJsonType; \n getFeatureInfoUrl?: string\n } |\n {\n type: 'wmts';\n format?: string; \n layer: string;\n style: string; \n tileMatrixSetID: string;\n tileMatrixLabels?: string[];\n times?: ESJTimeIntervalCollectionJsonType;\n dimensions?: JsonValue;\n tileWidth?: number;\n tileHeight?: number;\n tilingScheme?: ESTilingSchemaJsonType;\n ellipsoid?: [x: number, y: number, z: number]; \n credit?: string; \n subdomains?: string | string[]; \n } |\n {\n type: 'ion';\n accessToken?: string,\n server?: string\n }\n```\n\n### tilingSchema\u7C7B\u578B\n```javascript\n export type ESTilingSchemaJsonType = {\n \"type\": \"WebMercatorTilingScheme\";\n \"ellipsoid\"?: [x: number, y: number, z: number];\n \"numberOfLevelZeroTilesX\"?: number; .\n \"numberOfLevelZeroTilesY\"?: number;\n \"rectangleSouthwestInMeters\"?: [number, number];\n \"rectangleNortheastInMeters\"?: [number, number];\n } | {\n \"type\": \"GeographicTilingScheme\";\n \"ellipsoid\"?: [x: number, y: number, z: number];\n \"rectangle\"?: [west: number, south: number, east: number, north: number];\n \"numberOfLevelZeroTilesX\"?: number;\n \"numberOfLevelZeroTilesY\"?: number;\n }\n```\n\n### times\u7C7B\u578B\n```javascript\nexport type ESJTimeIntervalCollectionJsonType = {\n type: 'fromIso8601';\n iso8601: string;\n isStartIncluded?: boolean;\n isStopIncluded?: boolean;\n leadingInterval?: boolean;\n trailingInterval?: boolean;\n} | {\n type: 'fromIso8601DateArray';\n iso8601Dates?: string[];\n isStartIncluded?: boolean;\n isStopIncluded?: boolean;\n leadingInterval?: boolean;\n trailingInterval?: boolean;\n};\n\n```\n";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
|
-
import { BooleanProperty, ESJFillStyle, NumberProperty, PositionProperty } from "../../ESJTypes";
|
|
2
|
+
import { BooleanProperty, ESJEditingBindModeType, ESJFillStyle, NumberProperty, PositionProperty } from "../../ESJTypes";
|
|
3
3
|
import { ESLocalVector2D } from "../base";
|
|
4
4
|
export declare class ESLocalCircle extends ESLocalVector2D {
|
|
5
5
|
static readonly type: string;
|
|
@@ -37,6 +37,7 @@ export declare class ESLocalCircle extends ESLocalVector2D {
|
|
|
37
37
|
get perimeter(): number;
|
|
38
38
|
get perimeterChanged(): import("xbsj-base").Listener<[number, number]>;
|
|
39
39
|
toPolygon(steps?: number, units?: string): [number, number, number][];
|
|
40
|
+
editingBindMode: ESJEditingBindModeType;
|
|
40
41
|
static defaults: {
|
|
41
42
|
fillStyle: ESJFillStyle;
|
|
42
43
|
pointStyle: import("../../ESJTypes").ESJPointStyle;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged, SceneObjectKey } from "xbsj-base";
|
|
2
2
|
import { ES3DTileset } from "../ES3DTileset";
|
|
3
|
-
import { ESSceneObject } from "../../../ESObjects/base";
|
|
4
3
|
export declare class ESMsTileset extends ES3DTileset {
|
|
5
4
|
static readonly type: string;
|
|
6
5
|
get typeName(): string;
|
|
@@ -15,11 +14,12 @@ export declare class ESMsTileset extends ES3DTileset {
|
|
|
15
14
|
offset: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJVector3D | undefined>;
|
|
16
15
|
rotation: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJVector3D>;
|
|
17
16
|
czmImageBasedLightingFactor: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJVector2D>;
|
|
17
|
+
czmEnvironmentMapManager: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJEnvironmentMapManagerType | undefined>;
|
|
18
18
|
czmLuminanceAtZenith: number;
|
|
19
19
|
czmAtmosphereScatteringIntensity: number;
|
|
20
20
|
czmMaximumMemoryUsage: number;
|
|
21
21
|
czmClassificationType: string;
|
|
22
|
-
czmStyleJson: import("xbsj-base").ReactiveVariable<JsonValue>;
|
|
22
|
+
czmStyleJson: import("xbsj-base").ReactiveVariable<import("xbsj-base").JsonValue>;
|
|
23
23
|
czmBackFaceCulling: boolean;
|
|
24
24
|
czmDebugShowBoundingVolume: boolean;
|
|
25
25
|
czmDebugShowContentBoundingVolume: boolean;
|
|
@@ -32,13 +32,14 @@ export declare class ESMsTileset extends ES3DTileset {
|
|
|
32
32
|
clippingPlaneEdgeWidth: number;
|
|
33
33
|
materialParams: import("../../../ESJTypes").ESJsonObjectType;
|
|
34
34
|
allowPicking: boolean;
|
|
35
|
+
materialOverrideMap: import("xbsj-base").ReactiveVariable<undefined>;
|
|
35
36
|
show: boolean;
|
|
36
37
|
collision: boolean;
|
|
37
38
|
flyToParam: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJFlyToParam | undefined>;
|
|
38
39
|
flyInParam: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJFlyInParam | undefined>;
|
|
39
40
|
name: string;
|
|
40
41
|
ref: string | undefined;
|
|
41
|
-
extras: import("xbsj-base").ReactiveVariable<JsonValue>;
|
|
42
|
+
extras: import("xbsj-base").ReactiveVariable<import("xbsj-base").JsonValue>;
|
|
42
43
|
devTags: import("xbsj-base").ReactiveVariable<string[] | undefined>;
|
|
43
44
|
execOnceFuncStr: string | undefined;
|
|
44
45
|
updateFuncStr: string | undefined;
|
|
@@ -46,10 +47,9 @@ export declare class ESMsTileset extends ES3DTileset {
|
|
|
46
47
|
};
|
|
47
48
|
get json(): JsonType;
|
|
48
49
|
set json(value: JsonType);
|
|
49
|
-
combinationClass: boolean;
|
|
50
|
-
getMainClass(): ESSceneObject;
|
|
51
50
|
private _es3DTileset;
|
|
52
51
|
get es3DTileset(): ES3DTileset;
|
|
52
|
+
combinationClass: boolean;
|
|
53
53
|
private _tilesetServePort;
|
|
54
54
|
get tilesetServePort(): string;
|
|
55
55
|
get tilesetServePortChanged(): import("xbsj-base").Listener<[string, string]>;
|
|
@@ -83,6 +83,7 @@ export declare class ESMsTileset extends ES3DTileset {
|
|
|
83
83
|
baseColor: number[];
|
|
84
84
|
};
|
|
85
85
|
cacheBytes: number;
|
|
86
|
+
materialOverrideMap: {};
|
|
86
87
|
show: boolean;
|
|
87
88
|
collision: boolean;
|
|
88
89
|
allowPicking: boolean;
|
|
@@ -103,11 +104,12 @@ export declare namespace ESMsTileset {
|
|
|
103
104
|
offset: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJVector3D | undefined>;
|
|
104
105
|
rotation: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJVector3D>;
|
|
105
106
|
czmImageBasedLightingFactor: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJVector2D>;
|
|
107
|
+
czmEnvironmentMapManager: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJEnvironmentMapManagerType | undefined>;
|
|
106
108
|
czmLuminanceAtZenith: number;
|
|
107
109
|
czmAtmosphereScatteringIntensity: number;
|
|
108
110
|
czmMaximumMemoryUsage: number;
|
|
109
111
|
czmClassificationType: string;
|
|
110
|
-
czmStyleJson: import("xbsj-base").ReactiveVariable<JsonValue>;
|
|
112
|
+
czmStyleJson: import("xbsj-base").ReactiveVariable<import("xbsj-base").JsonValue>;
|
|
111
113
|
czmBackFaceCulling: boolean;
|
|
112
114
|
czmDebugShowBoundingVolume: boolean;
|
|
113
115
|
czmDebugShowContentBoundingVolume: boolean;
|
|
@@ -120,13 +122,14 @@ export declare namespace ESMsTileset {
|
|
|
120
122
|
clippingPlaneEdgeWidth: number;
|
|
121
123
|
materialParams: import("../../../ESJTypes").ESJsonObjectType;
|
|
122
124
|
allowPicking: boolean;
|
|
125
|
+
materialOverrideMap: import("xbsj-base").ReactiveVariable<undefined>;
|
|
123
126
|
show: boolean;
|
|
124
127
|
collision: boolean;
|
|
125
128
|
flyToParam: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJFlyToParam | undefined>;
|
|
126
129
|
flyInParam: import("xbsj-base").ReactiveVariable<import("../../../ESJTypes").ESJFlyInParam | undefined>;
|
|
127
130
|
name: string;
|
|
128
131
|
ref: string | undefined;
|
|
129
|
-
extras: import("xbsj-base").ReactiveVariable<JsonValue>;
|
|
132
|
+
extras: import("xbsj-base").ReactiveVariable<import("xbsj-base").JsonValue>;
|
|
130
133
|
devTags: import("xbsj-base").ReactiveVariable<string[] | undefined>;
|
|
131
134
|
execOnceFuncStr: string | undefined;
|
|
132
135
|
updateFuncStr: string | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UniteChanged } from "xbsj-base";
|
|
2
|
-
import { ESJFillStyle, ESJStrokeStyle } from "../../ESJTypes";
|
|
2
|
+
import { ESJEditingBindModeType, ESJFillStyle, ESJStrokeStyle } from "../../ESJTypes";
|
|
3
3
|
import { ESGeoVector } from "../base";
|
|
4
4
|
/**
|
|
5
5
|
* https://www.wolai.com/earthsdk/KumomxD1tKHbq242aFVwz
|
|
@@ -32,6 +32,7 @@ export declare class ESPipeFence extends ESGeoVector {
|
|
|
32
32
|
toDestroyFuncStr: string | undefined;
|
|
33
33
|
};
|
|
34
34
|
static supportEditingModes: string[];
|
|
35
|
+
editingBindMode: ESJEditingBindModeType;
|
|
35
36
|
private _distance;
|
|
36
37
|
get distance(): number;
|
|
37
38
|
get distanceChanged(): import("xbsj-base").Listener<[number, number]>;
|