mars3d 3.3.9 → 3.3.10

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/mars3d.d.ts CHANGED
@@ -2,8 +2,8 @@
2
2
  /**
3
3
  * Mars3D三维可视化平台 mars3d
4
4
  *
5
- * 版本信息:v3.3.9
6
- * 编译日期:2022-05-16 20:53:57
5
+ * 版本信息:v3.3.10
6
+ * 编译日期:2022-05-23 18:16:48
7
7
  * 版权所有:Copyright by 火星科技 http://mars3d.cn
8
8
  * 使用单位:免费公开版 ,2022-02-01
9
9
  */
@@ -1245,7 +1245,10 @@ declare namespace MaterialType {
1245
1245
  * @property [image] - 背景图片URL
1246
1246
  * @property [color = new Cesium.Color(1.0, 0.0, 0.0, 0.7)] - 颜色
1247
1247
  * @property [count = 1] - 数量
1248
+ * @property [direction = -1] - 方向,1是往下,-1是往上
1248
1249
  * @property [speed = 5.0] - 速度,值越大越快
1250
+ * @property [bloom = false] - 是否泛光
1251
+ * @property [axisY = false] - 是否Y轴朝上
1249
1252
  */
1250
1253
  const WallScroll: string;
1251
1254
  /**
@@ -6246,7 +6249,6 @@ declare class BaseEntity extends BaseGraphic {
6246
6249
  * @param [options.parent] - 要与此实体关联的父实体。
6247
6250
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
6248
6251
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
6249
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
6250
6252
  * @param [options.entity] - 传入外部已经构造好的Entity对象
6251
6253
  * @param [options.hasEdit = true] - 是否允许编辑
6252
6254
  * @param [options.maxCacheCount = 50] - 当使用addDynamicPosition设置为动画轨迹位置时,保留的坐标点数量
@@ -6280,7 +6282,6 @@ declare class BasePointEntity extends BaseEntity {
6280
6282
  parent?: Cesium.Entity;
6281
6283
  onBeforeCreate?: (...params: any[]) => any;
6282
6284
  drawShow?: boolean;
6283
- addHeight?: number;
6284
6285
  entity?: Cesium.Entity;
6285
6286
  hasEdit?: boolean;
6286
6287
  maxCacheCount?: number;
@@ -6422,7 +6423,6 @@ declare class BasePointEntity extends BaseEntity {
6422
6423
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
6423
6424
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
6424
6425
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
6425
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
6426
6426
  * @param [options.hasEdit = true] - 是否允许编辑
6427
6427
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
6428
6428
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -6449,7 +6449,6 @@ declare class BasePolyEntity extends BaseEntity {
6449
6449
  onBeforeCreate?: (...params: any[]) => any;
6450
6450
  minPointNum?: number;
6451
6451
  maxPointNum?: number;
6452
- addHeight?: number;
6453
6452
  hasEdit?: boolean;
6454
6453
  hasMoveEdit?: boolean;
6455
6454
  hasHeightEdit?: boolean;
@@ -6647,7 +6646,6 @@ declare namespace BillboardEntity {
6647
6646
  * @param [options.frameRateHeight = 30] - 当使用addDynamicPosition设置为动画轨迹位置时,并clampToTileset:true时,多少帧计算一次贴模型高度
6648
6647
  * @param [options.objectsToExclude] - 当使用addDynamicPosition设置为动画轨迹位置时,并clampToTileset:true时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
6649
6648
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
6650
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
6651
6649
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
6652
6650
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
6653
6651
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -6680,7 +6678,6 @@ declare class BillboardEntity extends BasePointEntity {
6680
6678
  frameRateHeight?: number;
6681
6679
  objectsToExclude?: any;
6682
6680
  drawShow?: boolean;
6683
- addHeight?: number;
6684
6681
  popup?: string | any[] | ((...params: any[]) => any);
6685
6682
  popupOptions?: Popup.StyleOptions | any;
6686
6683
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -6814,7 +6811,6 @@ declare namespace BoxEntity {
6814
6811
  * @param [options.parent] - 要与此实体关联的父实体。
6815
6812
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
6816
6813
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
6817
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
6818
6814
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
6819
6815
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
6820
6816
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -6838,7 +6834,6 @@ declare class BoxEntity extends BasePointEntity {
6838
6834
  parent?: Cesium.Entity;
6839
6835
  onBeforeCreate?: (...params: any[]) => any;
6840
6836
  drawShow?: boolean;
6841
- addHeight?: number;
6842
6837
  popup?: string | any[] | ((...params: any[]) => any);
6843
6838
  popupOptions?: Popup.StyleOptions | any;
6844
6839
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -6967,7 +6962,6 @@ declare namespace CanvasLabelEntity {
6967
6962
  * @param [options.parent] - 要与此实体关联的父实体。
6968
6963
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
6969
6964
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
6970
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
6971
6965
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
6972
6966
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
6973
6967
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -6990,7 +6984,6 @@ declare class CanvasLabelEntity extends BasePointEntity {
6990
6984
  parent?: Cesium.Entity;
6991
6985
  onBeforeCreate?: (...params: any[]) => any;
6992
6986
  drawShow?: boolean;
6993
- addHeight?: number;
6994
6987
  popup?: string | any[] | ((...params: any[]) => any);
6995
6988
  popupOptions?: Popup.StyleOptions | any;
6996
6989
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -7100,7 +7093,6 @@ declare namespace CircleEntity {
7100
7093
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
7101
7094
  * @param [options.drawShowRadius = true] - 绘制时,是否显示圆的半径。
7102
7095
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
7103
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
7104
7096
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
7105
7097
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
7106
7098
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -7124,7 +7116,6 @@ declare class CircleEntity extends BasePointEntity {
7124
7116
  onBeforeCreate?: (...params: any[]) => any;
7125
7117
  drawShowRadius?: boolean;
7126
7118
  drawShow?: boolean;
7127
- addHeight?: number;
7128
7119
  popup?: string | any[] | ((...params: any[]) => any);
7129
7120
  popupOptions?: Popup.StyleOptions | any;
7130
7121
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -7490,7 +7481,6 @@ declare namespace CorridorEntity {
7490
7481
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
7491
7482
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
7492
7483
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
7493
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
7494
7484
  * @param [options.hasEdit = true] - 是否允许编辑
7495
7485
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
7496
7486
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -7517,7 +7507,6 @@ declare class CorridorEntity extends BasePolyEntity {
7517
7507
  onBeforeCreate?: (...params: any[]) => any;
7518
7508
  minPointNum?: number;
7519
7509
  maxPointNum?: number;
7520
- addHeight?: number;
7521
7510
  hasEdit?: boolean;
7522
7511
  hasMoveEdit?: boolean;
7523
7512
  hasHeightEdit?: boolean;
@@ -7566,7 +7555,6 @@ declare class CorridorEntity extends BasePolyEntity {
7566
7555
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
7567
7556
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
7568
7557
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
7569
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
7570
7558
  * @param [options.hasEdit = true] - 是否允许编辑
7571
7559
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
7572
7560
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -7593,7 +7581,6 @@ declare class CurveEntity extends PolylineEntity {
7593
7581
  onBeforeCreate?: (...params: any[]) => any;
7594
7582
  minPointNum?: number;
7595
7583
  maxPointNum?: number;
7596
- addHeight?: number;
7597
7584
  hasEdit?: boolean;
7598
7585
  hasMoveEdit?: boolean;
7599
7586
  hasHeightEdit?: boolean;
@@ -7694,7 +7681,6 @@ declare namespace CylinderEntity {
7694
7681
  * @param [options.parent] - 要与此实体关联的父实体。
7695
7682
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
7696
7683
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
7697
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
7698
7684
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
7699
7685
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
7700
7686
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -7718,7 +7704,6 @@ declare class CylinderEntity extends BasePointEntity {
7718
7704
  parent?: Cesium.Entity;
7719
7705
  onBeforeCreate?: (...params: any[]) => any;
7720
7706
  drawShow?: boolean;
7721
- addHeight?: number;
7722
7707
  popup?: string | any[] | ((...params: any[]) => any);
7723
7708
  popupOptions?: Popup.StyleOptions | any;
7724
7709
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -7844,7 +7829,6 @@ declare namespace DivBillboardEntity {
7844
7829
  * @param [options.parent] - 要与此实体关联的父实体。
7845
7830
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
7846
7831
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
7847
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
7848
7832
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
7849
7833
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
7850
7834
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -7867,7 +7851,6 @@ declare class DivBillboardEntity extends BillboardEntity {
7867
7851
  parent?: Cesium.Entity;
7868
7852
  onBeforeCreate?: (...params: any[]) => any;
7869
7853
  drawShow?: boolean;
7870
- addHeight?: number;
7871
7854
  popup?: string | any[] | ((...params: any[]) => any);
7872
7855
  popupOptions?: Popup.StyleOptions | any;
7873
7856
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -8081,7 +8064,6 @@ declare namespace EllipseEntity {
8081
8064
  * @param [options.parent] - 要与此实体关联的父实体。
8082
8065
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
8083
8066
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
8084
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
8085
8067
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
8086
8068
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
8087
8069
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -8104,7 +8086,6 @@ declare class EllipseEntity extends CircleEntity {
8104
8086
  parent?: Cesium.Entity;
8105
8087
  onBeforeCreate?: (...params: any[]) => any;
8106
8088
  drawShow?: boolean;
8107
- addHeight?: number;
8108
8089
  popup?: string | any[] | ((...params: any[]) => any);
8109
8090
  popupOptions?: Popup.StyleOptions | any;
8110
8091
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -8245,7 +8226,6 @@ declare namespace EllipsoidEntity {
8245
8226
  * @param [options.parent] - 要与此实体关联的父实体。
8246
8227
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
8247
8228
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
8248
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
8249
8229
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
8250
8230
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
8251
8231
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -8270,7 +8250,6 @@ declare class EllipsoidEntity extends BasePointEntity {
8270
8250
  parent?: Cesium.Entity;
8271
8251
  onBeforeCreate?: (...params: any[]) => any;
8272
8252
  drawShow?: boolean;
8273
- addHeight?: number;
8274
8253
  popup?: string | any[] | ((...params: any[]) => any);
8275
8254
  popupOptions?: Popup.StyleOptions | any;
8276
8255
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -8415,7 +8394,6 @@ declare namespace FontBillboardEntity {
8415
8394
  * @param [options.parent] - 要与此实体关联的父实体。
8416
8395
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
8417
8396
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
8418
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
8419
8397
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
8420
8398
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
8421
8399
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -8438,7 +8416,6 @@ declare class FontBillboardEntity extends BasePointEntity {
8438
8416
  parent?: Cesium.Entity;
8439
8417
  onBeforeCreate?: (...params: any[]) => any;
8440
8418
  drawShow?: boolean;
8441
- addHeight?: number;
8442
8419
  popup?: string | any[] | ((...params: any[]) => any);
8443
8420
  popupOptions?: Popup.StyleOptions | any;
8444
8421
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -8561,7 +8538,6 @@ declare namespace LabelEntity {
8561
8538
  * @param [options.parent] - 要与此实体关联的父实体。
8562
8539
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
8563
8540
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
8564
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
8565
8541
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
8566
8542
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
8567
8543
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -8584,7 +8560,6 @@ declare class LabelEntity extends BasePointEntity {
8584
8560
  parent?: Cesium.Entity;
8585
8561
  onBeforeCreate?: (...params: any[]) => any;
8586
8562
  drawShow?: boolean;
8587
- addHeight?: number;
8588
8563
  popup?: string | any[] | ((...params: any[]) => any);
8589
8564
  popupOptions?: Popup.StyleOptions | any;
8590
8565
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -8782,7 +8757,6 @@ declare namespace ModelEntity {
8782
8757
  * @param [options.referenceFrame = Cesium.ReferenceFrame.FIXED] - 当使用addDynamicPosition设置为动画轨迹位置时,position位置被定义的参考系。
8783
8758
  * @param [options.numberOfDerivatives = 0] - 当使用addDynamicPosition设置为动画轨迹位置时,每个位置的导数的数量;即速度、加速度等。
8784
8759
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
8785
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
8786
8760
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
8787
8761
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
8788
8762
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -8818,7 +8792,6 @@ declare class ModelEntity extends BasePointEntity {
8818
8792
  referenceFrame?: Cesium.ReferenceFrame;
8819
8793
  numberOfDerivatives?: number;
8820
8794
  drawShow?: boolean;
8821
- addHeight?: number;
8822
8795
  popup?: string | any[] | ((...params: any[]) => any);
8823
8796
  popupOptions?: Popup.StyleOptions | any;
8824
8797
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -9171,7 +9144,6 @@ declare namespace PlaneEntity {
9171
9144
  * @param [options.parent] - 要与此实体关联的父实体。
9172
9145
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
9173
9146
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
9174
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
9175
9147
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
9176
9148
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
9177
9149
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -9195,7 +9167,6 @@ declare class PlaneEntity extends BasePointEntity {
9195
9167
  parent?: Cesium.Entity;
9196
9168
  onBeforeCreate?: (...params: any[]) => any;
9197
9169
  drawShow?: boolean;
9198
- addHeight?: number;
9199
9170
  popup?: string | any[] | ((...params: any[]) => any);
9200
9171
  popupOptions?: Popup.StyleOptions | any;
9201
9172
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -9298,7 +9269,6 @@ declare namespace PointEntity {
9298
9269
  * @param [options.frameRateHeight = 30] - 当使用addDynamicPosition设置为动画轨迹位置时,并clampToTileset:true时,多少帧计算一次贴模型高度
9299
9270
  * @param [options.objectsToExclude] - 当使用addDynamicPosition设置为动画轨迹位置时,并clampToTileset:true时,排除的不进行贴模型计算的模型对象,可以是: primitives, entities, 或 3D Tiles features
9300
9271
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
9301
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
9302
9272
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
9303
9273
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
9304
9274
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -9331,7 +9301,6 @@ declare class PointEntity extends BasePointEntity {
9331
9301
  frameRateHeight?: number;
9332
9302
  objectsToExclude?: any;
9333
9303
  drawShow?: boolean;
9334
- addHeight?: number;
9335
9304
  popup?: string | any[] | ((...params: any[]) => any);
9336
9305
  popupOptions?: Popup.StyleOptions | any;
9337
9306
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -9457,7 +9426,6 @@ declare namespace PolygonEntity {
9457
9426
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
9458
9427
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
9459
9428
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
9460
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
9461
9429
  * @param [options.hasEdit = true] - 是否允许编辑
9462
9430
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
9463
9431
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -9484,7 +9452,6 @@ declare class PolygonEntity extends BasePolyEntity {
9484
9452
  onBeforeCreate?: (...params: any[]) => any;
9485
9453
  minPointNum?: number;
9486
9454
  maxPointNum?: number;
9487
- addHeight?: number;
9488
9455
  hasEdit?: boolean;
9489
9456
  hasMoveEdit?: boolean;
9490
9457
  hasHeightEdit?: boolean;
@@ -9638,7 +9605,6 @@ declare namespace PolylineEntity {
9638
9605
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
9639
9606
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
9640
9607
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
9641
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
9642
9608
  * @param [options.hasEdit = true] - 是否允许编辑
9643
9609
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
9644
9610
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -9665,7 +9631,6 @@ declare class PolylineEntity extends BasePolyEntity {
9665
9631
  onBeforeCreate?: (...params: any[]) => any;
9666
9632
  minPointNum?: number;
9667
9633
  maxPointNum?: number;
9668
- addHeight?: number;
9669
9634
  hasEdit?: boolean;
9670
9635
  hasMoveEdit?: boolean;
9671
9636
  hasHeightEdit?: boolean;
@@ -9760,7 +9725,6 @@ declare namespace PolylineVolumeEntity {
9760
9725
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
9761
9726
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
9762
9727
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
9763
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
9764
9728
  * @param [options.hasEdit = true] - 是否允许编辑
9765
9729
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
9766
9730
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -9787,7 +9751,6 @@ declare class PolylineVolumeEntity extends BasePolyEntity {
9787
9751
  onBeforeCreate?: (...params: any[]) => any;
9788
9752
  minPointNum?: number;
9789
9753
  maxPointNum?: number;
9790
- addHeight?: number;
9791
9754
  hasEdit?: boolean;
9792
9755
  hasMoveEdit?: boolean;
9793
9756
  hasHeightEdit?: boolean;
@@ -9911,7 +9874,6 @@ declare namespace RectangleEntity {
9911
9874
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
9912
9875
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
9913
9876
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
9914
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
9915
9877
  * @param [options.hasEdit = true] - 是否允许编辑
9916
9878
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
9917
9879
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -9939,7 +9901,6 @@ declare class RectangleEntity extends BasePolyEntity {
9939
9901
  onBeforeCreate?: (...params: any[]) => any;
9940
9902
  minPointNum?: number;
9941
9903
  maxPointNum?: number;
9942
- addHeight?: number;
9943
9904
  hasEdit?: boolean;
9944
9905
  hasMoveEdit?: boolean;
9945
9906
  hasHeightEdit?: boolean;
@@ -10166,7 +10127,6 @@ declare namespace RectangularSensor {
10166
10127
  * @param [options.parent] - 要与此实体关联的父实体。
10167
10128
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10168
10129
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
10169
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10170
10130
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10171
10131
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10172
10132
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10190,7 +10150,6 @@ declare class RectangularSensor extends BasePointEntity {
10190
10150
  parent?: Cesium.Entity;
10191
10151
  onBeforeCreate?: (...params: any[]) => any;
10192
10152
  drawShow?: boolean;
10193
- addHeight?: number;
10194
10153
  popup?: string | any[] | ((...params: any[]) => any);
10195
10154
  popupOptions?: Popup.StyleOptions | any;
10196
10155
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10457,7 +10416,6 @@ declare namespace WallEntity {
10457
10416
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10458
10417
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
10459
10418
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
10460
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10461
10419
  * @param [options.hasEdit = true] - 是否允许编辑
10462
10420
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
10463
10421
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -10484,7 +10442,6 @@ declare class WallEntity extends BasePolyEntity {
10484
10442
  onBeforeCreate?: (...params: any[]) => any;
10485
10443
  minPointNum?: number;
10486
10444
  maxPointNum?: number;
10487
- addHeight?: number;
10488
10445
  hasEdit?: boolean;
10489
10446
  hasMoveEdit?: boolean;
10490
10447
  hasHeightEdit?: boolean;
@@ -10532,7 +10489,6 @@ declare class WallEntity extends BasePolyEntity {
10532
10489
  * @param [options.parent] - 要与此实体关联的父实体。
10533
10490
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10534
10491
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10535
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10536
10492
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10537
10493
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10538
10494
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10555,7 +10511,6 @@ declare class AttackArrow extends PolygonEntity {
10555
10511
  parent?: Cesium.Entity;
10556
10512
  onBeforeCreate?: (...params: any[]) => any;
10557
10513
  hasMoveEdit?: boolean;
10558
- addHeight?: number;
10559
10514
  popup?: string | any[] | ((...params: any[]) => any);
10560
10515
  popupOptions?: Popup.StyleOptions | any;
10561
10516
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10595,7 +10550,6 @@ declare class AttackArrow extends PolygonEntity {
10595
10550
  * @param [options.parent] - 要与此实体关联的父实体。
10596
10551
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10597
10552
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10598
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10599
10553
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10600
10554
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10601
10555
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10618,7 +10572,6 @@ declare class AttackArrowPW extends PolygonEntity {
10618
10572
  parent?: Cesium.Entity;
10619
10573
  onBeforeCreate?: (...params: any[]) => any;
10620
10574
  hasMoveEdit?: boolean;
10621
- addHeight?: number;
10622
10575
  popup?: string | any[] | ((...params: any[]) => any);
10623
10576
  popupOptions?: Popup.StyleOptions | any;
10624
10577
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10658,7 +10611,6 @@ declare class AttackArrowPW extends PolygonEntity {
10658
10611
  * @param [options.parent] - 要与此实体关联的父实体。
10659
10612
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10660
10613
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10661
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10662
10614
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10663
10615
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10664
10616
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10681,7 +10633,6 @@ declare class AttackArrowYW extends PolygonEntity {
10681
10633
  parent?: Cesium.Entity;
10682
10634
  onBeforeCreate?: (...params: any[]) => any;
10683
10635
  hasMoveEdit?: boolean;
10684
- addHeight?: number;
10685
10636
  popup?: string | any[] | ((...params: any[]) => any);
10686
10637
  popupOptions?: Popup.StyleOptions | any;
10687
10638
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10721,7 +10672,6 @@ declare class AttackArrowYW extends PolygonEntity {
10721
10672
  * @param [options.parent] - 要与此实体关联的父实体。
10722
10673
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10723
10674
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10724
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10725
10675
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10726
10676
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10727
10677
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10744,7 +10694,6 @@ declare class CloseVurve extends PolygonEntity {
10744
10694
  parent?: Cesium.Entity;
10745
10695
  onBeforeCreate?: (...params: any[]) => any;
10746
10696
  hasMoveEdit?: boolean;
10747
- addHeight?: number;
10748
10697
  popup?: string | any[] | ((...params: any[]) => any);
10749
10698
  popupOptions?: Popup.StyleOptions | any;
10750
10699
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10784,7 +10733,6 @@ declare class CloseVurve extends PolygonEntity {
10784
10733
  * @param [options.parent] - 要与此实体关联的父实体。
10785
10734
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10786
10735
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10787
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10788
10736
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10789
10737
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10790
10738
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10807,7 +10755,6 @@ declare class DoubleArrow extends PolygonEntity {
10807
10755
  parent?: Cesium.Entity;
10808
10756
  onBeforeCreate?: (...params: any[]) => any;
10809
10757
  hasMoveEdit?: boolean;
10810
- addHeight?: number;
10811
10758
  popup?: string | any[] | ((...params: any[]) => any);
10812
10759
  popupOptions?: Popup.StyleOptions | any;
10813
10760
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10859,7 +10806,6 @@ declare class EditSector extends EditPolygon {
10859
10806
  * @param [options.parent] - 要与此实体关联的父实体。
10860
10807
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10861
10808
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10862
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10863
10809
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10864
10810
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10865
10811
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10882,7 +10828,6 @@ declare class FineArrow extends PolygonEntity {
10882
10828
  parent?: Cesium.Entity;
10883
10829
  onBeforeCreate?: (...params: any[]) => any;
10884
10830
  hasMoveEdit?: boolean;
10885
- addHeight?: number;
10886
10831
  popup?: string | any[] | ((...params: any[]) => any);
10887
10832
  popupOptions?: Popup.StyleOptions | any;
10888
10833
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10922,7 +10867,6 @@ declare class FineArrow extends PolygonEntity {
10922
10867
  * @param [options.parent] - 要与此实体关联的父实体。
10923
10868
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10924
10869
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10925
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10926
10870
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10927
10871
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10928
10872
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -10945,7 +10889,6 @@ declare class FineArrowYW extends PolygonEntity {
10945
10889
  parent?: Cesium.Entity;
10946
10890
  onBeforeCreate?: (...params: any[]) => any;
10947
10891
  hasMoveEdit?: boolean;
10948
- addHeight?: number;
10949
10892
  popup?: string | any[] | ((...params: any[]) => any);
10950
10893
  popupOptions?: Popup.StyleOptions | any;
10951
10894
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -10985,7 +10928,6 @@ declare class FineArrowYW extends PolygonEntity {
10985
10928
  * @param [options.parent] - 要与此实体关联的父实体。
10986
10929
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
10987
10930
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
10988
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
10989
10931
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
10990
10932
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
10991
10933
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11008,7 +10950,6 @@ declare class GatheringPlace extends PolygonEntity {
11008
10950
  parent?: Cesium.Entity;
11009
10951
  onBeforeCreate?: (...params: any[]) => any;
11010
10952
  hasMoveEdit?: boolean;
11011
- addHeight?: number;
11012
10953
  popup?: string | any[] | ((...params: any[]) => any);
11013
10954
  popupOptions?: Popup.StyleOptions | any;
11014
10955
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -11048,7 +10989,6 @@ declare class GatheringPlace extends PolygonEntity {
11048
10989
  * @param [options.parent] - 要与此实体关联的父实体。
11049
10990
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11050
10991
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
11051
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11052
10992
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
11053
10993
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
11054
10994
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11071,7 +11011,6 @@ declare class IsosTriangle extends PolygonEntity {
11071
11011
  parent?: Cesium.Entity;
11072
11012
  onBeforeCreate?: (...params: any[]) => any;
11073
11013
  hasMoveEdit?: boolean;
11074
- addHeight?: number;
11075
11014
  popup?: string | any[] | ((...params: any[]) => any);
11076
11015
  popupOptions?: Popup.StyleOptions | any;
11077
11016
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -11111,7 +11050,6 @@ declare class IsosTriangle extends PolygonEntity {
11111
11050
  * @param [options.parent] - 要与此实体关联的父实体。
11112
11051
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11113
11052
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
11114
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11115
11053
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
11116
11054
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
11117
11055
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11134,7 +11072,6 @@ declare class Lune extends PolygonEntity {
11134
11072
  parent?: Cesium.Entity;
11135
11073
  onBeforeCreate?: (...params: any[]) => any;
11136
11074
  hasMoveEdit?: boolean;
11137
- addHeight?: number;
11138
11075
  popup?: string | any[] | ((...params: any[]) => any);
11139
11076
  popupOptions?: Popup.StyleOptions | any;
11140
11077
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -11177,7 +11114,6 @@ declare class Lune extends PolygonEntity {
11177
11114
  * @param [options.parent] - 要与此实体关联的父实体。
11178
11115
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11179
11116
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
11180
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11181
11117
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
11182
11118
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
11183
11119
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11204,7 +11140,6 @@ declare class Regular extends PolygonEntity {
11204
11140
  parent?: Cesium.Entity;
11205
11141
  onBeforeCreate?: (...params: any[]) => any;
11206
11142
  hasMoveEdit?: boolean;
11207
- addHeight?: number;
11208
11143
  popup?: string | any[] | ((...params: any[]) => any);
11209
11144
  popupOptions?: Popup.StyleOptions | any;
11210
11145
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -11262,7 +11197,6 @@ declare class Regular extends PolygonEntity {
11262
11197
  * @param [options.parent] - 要与此实体关联的父实体。
11263
11198
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11264
11199
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
11265
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11266
11200
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
11267
11201
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
11268
11202
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11289,7 +11223,6 @@ declare class Sector extends PolygonEntity {
11289
11223
  parent?: Cesium.Entity;
11290
11224
  onBeforeCreate?: (...params: any[]) => any;
11291
11225
  hasMoveEdit?: boolean;
11292
- addHeight?: number;
11293
11226
  popup?: string | any[] | ((...params: any[]) => any);
11294
11227
  popupOptions?: Popup.StyleOptions | any;
11295
11228
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -11344,7 +11277,6 @@ declare class Sector extends PolygonEntity {
11344
11277
  * @param [options.parent] - 要与此实体关联的父实体。
11345
11278
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11346
11279
  * @param [options.hasMoveEdit = true] - 绘制时,是否可以整体平移
11347
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11348
11280
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
11349
11281
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
11350
11282
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11367,7 +11299,6 @@ declare class StraightArrow extends PolygonEntity {
11367
11299
  parent?: Cesium.Entity;
11368
11300
  onBeforeCreate?: (...params: any[]) => any;
11369
11301
  hasMoveEdit?: boolean;
11370
- addHeight?: number;
11371
11302
  popup?: string | any[] | ((...params: any[]) => any);
11372
11303
  popupOptions?: Popup.StyleOptions | any;
11373
11304
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -11412,7 +11343,6 @@ declare class StraightArrow extends PolygonEntity {
11412
11343
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11413
11344
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11414
11345
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11415
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11416
11346
  * @param [options.hasEdit = true] - 是否允许编辑
11417
11347
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11418
11348
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11442,7 +11372,6 @@ declare class AngleMeasure extends PolylineEntity {
11442
11372
  onBeforeCreate?: (...params: any[]) => any;
11443
11373
  minPointNum?: number;
11444
11374
  maxPointNum?: number;
11445
- addHeight?: number;
11446
11375
  hasEdit?: boolean;
11447
11376
  hasMoveEdit?: boolean;
11448
11377
  hasHeightEdit?: boolean;
@@ -11492,7 +11421,6 @@ declare class AngleMeasure extends PolylineEntity {
11492
11421
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11493
11422
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11494
11423
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11495
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11496
11424
  * @param [options.hasEdit = true] - 是否允许编辑
11497
11425
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11498
11426
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11521,7 +11449,6 @@ declare class AreaMeasure extends PolygonEntity {
11521
11449
  onBeforeCreate?: (...params: any[]) => any;
11522
11450
  minPointNum?: number;
11523
11451
  maxPointNum?: number;
11524
- addHeight?: number;
11525
11452
  hasEdit?: boolean;
11526
11453
  hasMoveEdit?: boolean;
11527
11454
  hasHeightEdit?: boolean;
@@ -11577,7 +11504,6 @@ declare class AreaMeasure extends PolygonEntity {
11577
11504
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11578
11505
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11579
11506
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11580
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11581
11507
  * @param [options.hasEdit = true] - 是否允许编辑
11582
11508
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11583
11509
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11606,7 +11532,6 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
11606
11532
  onBeforeCreate?: (...params: any[]) => any;
11607
11533
  minPointNum?: number;
11608
11534
  maxPointNum?: number;
11609
- addHeight?: number;
11610
11535
  hasEdit?: boolean;
11611
11536
  hasMoveEdit?: boolean;
11612
11537
  hasHeightEdit?: boolean;
@@ -11646,7 +11571,6 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
11646
11571
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11647
11572
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11648
11573
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11649
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11650
11574
  * @param [options.hasEdit = true] - 是否允许编辑
11651
11575
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11652
11576
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11675,7 +11599,6 @@ declare class DistanceMeasure extends PolylineEntity {
11675
11599
  onBeforeCreate?: (...params: any[]) => any;
11676
11600
  minPointNum?: number;
11677
11601
  maxPointNum?: number;
11678
- addHeight?: number;
11679
11602
  hasEdit?: boolean;
11680
11603
  hasMoveEdit?: boolean;
11681
11604
  hasHeightEdit?: boolean;
@@ -11725,7 +11648,6 @@ declare class DistanceMeasure extends PolylineEntity {
11725
11648
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11726
11649
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11727
11650
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11728
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11729
11651
  * @param [options.hasEdit = true] - 是否允许编辑
11730
11652
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11731
11653
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11754,7 +11676,6 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
11754
11676
  onBeforeCreate?: (...params: any[]) => any;
11755
11677
  minPointNum?: number;
11756
11678
  maxPointNum?: number;
11757
- addHeight?: number;
11758
11679
  hasEdit?: boolean;
11759
11680
  hasMoveEdit?: boolean;
11760
11681
  hasHeightEdit?: boolean;
@@ -11794,7 +11715,6 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
11794
11715
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11795
11716
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11796
11717
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11797
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11798
11718
  * @param [options.hasEdit = true] - 是否允许编辑
11799
11719
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11800
11720
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11823,7 +11743,6 @@ declare class HeightMeasure extends PolylineEntity {
11823
11743
  onBeforeCreate?: (...params: any[]) => any;
11824
11744
  minPointNum?: number;
11825
11745
  maxPointNum?: number;
11826
- addHeight?: number;
11827
11746
  hasEdit?: boolean;
11828
11747
  hasMoveEdit?: boolean;
11829
11748
  hasHeightEdit?: boolean;
@@ -11873,7 +11792,6 @@ declare class HeightMeasure extends PolylineEntity {
11873
11792
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11874
11793
  * @param [options.minPointNum = 2] - 绘制时,至少需要点的个数
11875
11794
  * @param [options.maxPointNum = 9999] - 绘制时,最多允许点的个数
11876
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11877
11795
  * @param [options.hasEdit = true] - 是否允许编辑
11878
11796
  * @param [options.hasMoveEdit = true] - 编辑时,是否可以整体平移
11879
11797
  * @param [options.hasHeightEdit = true] - 编辑时,当有diffHeight时,是否可以编辑高度
@@ -11902,7 +11820,6 @@ declare class HeightTriangleMeasure extends HeightMeasure {
11902
11820
  onBeforeCreate?: (...params: any[]) => any;
11903
11821
  minPointNum?: number;
11904
11822
  maxPointNum?: number;
11905
- addHeight?: number;
11906
11823
  hasEdit?: boolean;
11907
11824
  hasMoveEdit?: boolean;
11908
11825
  hasHeightEdit?: boolean;
@@ -11945,7 +11862,6 @@ declare class HeightTriangleMeasure extends HeightMeasure {
11945
11862
  * @param [options.parent] - 要与此实体关联的父实体。
11946
11863
  * @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
11947
11864
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
11948
- * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
11949
11865
  * @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
11950
11866
  * @param [options.popupOptions] - popup弹窗时的配置参数,也支持如pointerEvents等{@link Popup}构造参数
11951
11867
  * @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
@@ -11968,7 +11884,6 @@ declare class PointMeasure extends PointEntity {
11968
11884
  parent?: Cesium.Entity;
11969
11885
  onBeforeCreate?: (...params: any[]) => any;
11970
11886
  drawShow?: boolean;
11971
- addHeight?: number;
11972
11887
  popup?: string | any[] | ((...params: any[]) => any);
11973
11888
  popupOptions?: Popup.StyleOptions | any;
11974
11889
  tooltip?: string | any[] | ((...params: any[]) => any);
@@ -23960,11 +23875,13 @@ declare class Map extends BaseClass {
23960
23875
  * @param [options] - 参数对象,包括以下:
23961
23876
  * @param [options.basemaps] - 默认不比较及处理,true:返回所有basemps中配置图层,false:排除所有所有basemps中配置图层
23962
23877
  * @param [options.layers] - 默认不比较及处理,true:返回所有operationallayers中配置图层,false:排除所有operationallayers中配置图层
23878
+ * @param [options.childs = true] - 是否获取GroupLayer内的子图层
23963
23879
  * @returns 图层数组
23964
23880
  */
23965
23881
  getLayers(options?: {
23966
23882
  basemaps?: boolean;
23967
23883
  layers?: boolean;
23884
+ childs?: boolean;
23968
23885
  }): BaseLayer[] | any[];
23969
23886
  /**
23970
23887
  * 获取所有basemps底图图层
@@ -25369,14 +25286,20 @@ declare class TextMaterialProperty extends Image2MaterialProperty {
25369
25286
  * @param options.image - 背景图片URL
25370
25287
  * @param [options.color = new Cesium.Color(1, 0, 0, 1.0)] - 背景图片颜色
25371
25288
  * @param [options.count = 1] - 数量
25372
- * @param [options.speed = 5.0] - 速度
25289
+ * @param [options.direction = -1] - 方向,1是往下,-1是往上
25290
+ * @param [options.speed = 5.0] - 速度,值越大越快
25291
+ * @param [options.bloom = false] - 是否泛光
25292
+ * @param [options.axisY = false] - 是否Y轴朝上
25373
25293
  */
25374
25294
  declare class WallScrollMaterialProperty extends BaseMaterialProperty {
25375
25295
  constructor(options?: {
25376
25296
  image: string;
25377
25297
  color?: string | Cesium.Color;
25378
25298
  count?: number;
25299
+ direction?: number;
25379
25300
  speed?: number;
25301
+ bloom?: boolean;
25302
+ axisY?: boolean;
25380
25303
  });
25381
25304
  /**
25382
25305
  * 获取 材质名称
@@ -25666,7 +25589,12 @@ declare class EchartsLayer extends BaseLayer {
25666
25589
  * 热力图图层,基于heatmap.js库渲染。
25667
25590
  * 【需要引入 heatmap.js 库 和 mars3d-heatmap 插件库】
25668
25591
  * @param options - 参数对象,包括以下:
25669
- * @param [options.positions] - 坐标位置数组,有热力值时,传入LatLngPoint数组,热力值为value字段。示例:[{lat:31.123,lng:103.568,value:1.2},{lat:31.233,lng:103.938,value:2.3}]
25592
+ * @param [options.positions] - 坐标数据集合(含value热力值),有热力值时,传入LatLngPoint数组,热力值为value字段。示例:[{lat:31.123,lng:103.568,value:1.2},{lat:31.233,lng:103.938,value:2.3}]
25593
+ * @param [options.rectangle] - 坐标的矩形区域范围,默认内部自动计算
25594
+ * @param options.rectangle.xmin - 最小经度值
25595
+ * @param options.rectangle.xmax - 最大纬度值
25596
+ * @param options.rectangle.ymin - 最小纬度值
25597
+ * @param options.rectangle.ymax - 最大纬度值
25670
25598
  * @param [options.heatStyle] - heatmap热力图本身configObject参数,详情也可查阅 [heatmap文档]{@link https://www.patrick-wied.at/static/heatmapjs/docs.html}
25671
25599
  * @param [options.heatStyle.maxOpacity = 0.8] - 最大不透明度,取值范围0.0-1.0。
25672
25600
  * @param [options.heatStyle.minOpacity = 0.1] - 最小不透明度,取值范围0.0-1.0。
@@ -25701,6 +25629,12 @@ declare class EchartsLayer extends BaseLayer {
25701
25629
  declare class HeatLayer extends BaseLayer {
25702
25630
  constructor(options: {
25703
25631
  positions?: LngLatPoint[] | Cesium.Cartesian3[] | any;
25632
+ rectangle?: {
25633
+ xmin: number;
25634
+ xmax: number;
25635
+ ymin: number;
25636
+ ymax: number;
25637
+ };
25704
25638
  heatStyle?: {
25705
25639
  maxOpacity?: number;
25706
25640
  minOpacity?: number;
@@ -25748,7 +25682,8 @@ declare class HeatLayer extends BaseLayer {
25748
25682
  */
25749
25683
  style: RectanglePrimitive.StyleOptions | any;
25750
25684
  /**
25751
- * 数据位置坐标数组 (笛卡尔坐标), 赋值时可以传入LatLngPoint数组对象
25685
+ * 坐标数据集合(含value热力值),示例:[{lat:31.123,lng:103.568,value:1.2},{lat:31.233,lng:103.938,value:2.3}]
25686
+ * 平滑更新建议使用setPositions方法
25752
25687
  */
25753
25688
  positions: Cesium.Cartesian3[] | LngLatPoint[];
25754
25689
  /**
@@ -25760,22 +25695,24 @@ declare class HeatLayer extends BaseLayer {
25760
25695
  */
25761
25696
  readonly rectangle: Cesium.Rectangle;
25762
25697
  /**
25763
- * 添加新的坐标点
25764
- * @param item - 坐标点(含热力值)
25698
+ * 添加新的坐标点(含热力值)
25699
+ * @param item - 坐标点(含热力值),示例: {lat:31.123,lng:103.568,value:1.2}
25700
+ * @param [isGD] - 是否固定区域坐标,true时可以平滑更新
25765
25701
  * @returns 无
25766
25702
  */
25767
- addPosition(item: Cesium.Cartesian3 | LngLatPoint): void;
25703
+ addPosition(item: Cesium.Cartesian3 | LngLatPoint, isGD?: boolean): void;
25768
25704
  /**
25769
- * 清除矢量对象
25705
+ * 更新所有坐标点(含热力值)数据
25706
+ * @param arr - 坐标点(含热力值),示例:[{lat:31.123,lng:103.568,value:1.2},{lat:31.233,lng:103.938,value:2.3}]
25707
+ * @param [isGD] - 是否固定区域坐标,true时可以平滑更新
25770
25708
  * @returns 无
25771
25709
  */
25772
- clear(): void;
25710
+ setPositions(arr: Cesium.Cartesian3[] | LngLatPoint[], isGD?: boolean): void;
25773
25711
  /**
25774
- * 根据坐标点获取其对应的value值和颜色值
25775
- * @param item - 坐标点
25776
- * @returns 格式为 {"x":2081,"y":767,"value":3,"color":"rgba(209,231,0,195)"}
25712
+ * 清除矢量对象
25713
+ * @returns
25777
25714
  */
25778
- getPointData(item: Cesium.Cartesian3 | LngLatPoint): any;
25715
+ clear(): void;
25779
25716
  /**
25780
25717
  * 获取图层内所有数据的 矩形边界值
25781
25718
  * @param [options] - 控制参数
@@ -25785,6 +25722,12 @@ declare class HeatLayer extends BaseLayer {
25785
25722
  getRectangle(options?: {
25786
25723
  isFormat?: boolean;
25787
25724
  }): Cesium.Rectangle | any;
25725
+ /**
25726
+ * 根据坐标点获取其对应的value值和颜色值
25727
+ * @param item - 坐标点
25728
+ * @returns 格式为 {"x":2081,"y":767,"value":3,"color":"rgba(209,231,0,195)"}
25729
+ */
25730
+ getPointData(item: Cesium.Cartesian3 | LngLatPoint): any;
25788
25731
  }
25789
25732
 
25790
25733
  /**
@@ -26391,6 +26334,10 @@ declare class ConicSensor extends BasePointPrimitive {
26391
26334
  * @returns 坐标数组
26392
26335
  */
26393
26336
  getRayEarthPositions(): Cesium.Cartesian3[];
26337
+ /**
26338
+ * 矢量数据对应的 Cesium内部对象 (不同子类中实现)
26339
+ */
26340
+ readonly czmObject: Cesium.Entity | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.ClassificationPrimitive | any;
26394
26341
  }
26395
26342
 
26396
26343
  declare namespace RectSensor {
@@ -26555,6 +26502,10 @@ declare class RectSensor extends BasePointPrimitive {
26555
26502
  * @returns 坐标数组
26556
26503
  */
26557
26504
  getRayEarthPositions(): Cesium.Cartesian3[];
26505
+ /**
26506
+ * 矢量数据对应的 Cesium内部对象 (不同子类中实现)
26507
+ */
26508
+ readonly czmObject: Cesium.Entity | Cesium.Primitive | Cesium.GroundPrimitive | Cesium.ClassificationPrimitive | any;
26558
26509
  }
26559
26510
 
26560
26511
  declare namespace Satellite {
@@ -28729,51 +28680,6 @@ declare class QueryGeoServer extends BaseClass {
28729
28680
  readonly options: any;
28730
28681
  }
28731
28682
 
28732
- /**
28733
- * 选中对象的 泛光效果。
28734
- * @param [options] - 参数对象
28735
- * @param [options.eventType = "click"] - 高亮触发的事件类型,默认为单击。可选值:单击、鼠标移入,false时不内部控制
28736
- * @param [options.color = Cesium.Color.WHITE] - 泛光颜色
28737
- * @param [options.contrast = 128] - 对比度,取值范围[-255.0,255.0]
28738
- * @param [options.brightness = -0.3] - 亮度, 将输入纹理的RGB值转换为色相、饱和度和亮度(HSB),然后将该值添加到亮度中。
28739
- * @param [options.blurSamples = 32] - 模糊样本
28740
- * @param [options.delta = 1.0] - 增量
28741
- * @param [options.sigma = 3.78] - delta和sigma用于计算高斯滤波器的权值。方程是 <code>exp((-0.5 * delta * delta) / (sigma * sigma))</code>。
28742
- * @param [options.stepSize = 5.0] - 步长,是下一个texel的距离
28743
- * @param [options.ratio = 2.0] - 亮度增强比例
28744
- * @param [options.threshold = 0.0] - 亮度阈值
28745
- * @param [options.smoothWidth = 0.01] - 亮度光滑的宽度
28746
- * @param [options.enabled = true] - 对象的启用状态
28747
- */
28748
- declare class BloomTargetEffect extends BaseEffect {
28749
- constructor(options?: {
28750
- eventType?: EventType | boolean;
28751
- color?: Cesium.Color;
28752
- contrast?: number;
28753
- brightness?: number;
28754
- blurSamples?: number;
28755
- delta?: number;
28756
- sigma?: number;
28757
- stepSize?: number;
28758
- ratio?: number;
28759
- threshold?: number;
28760
- smoothWidth?: number;
28761
- enabled?: boolean;
28762
- });
28763
- /**
28764
- * 发光颜色
28765
- */
28766
- color: Cesium.Color;
28767
- /**
28768
- * 高亮触发的事件类型,默认为单击。
28769
- */
28770
- eventType: EventType | string;
28771
- /**
28772
- * 选中对象
28773
- */
28774
- selected: any | any | undefined;
28775
- }
28776
-
28777
28683
  declare namespace Measure {
28778
28684
  /**
28779
28685
  * @example
@@ -29535,10 +29441,10 @@ declare class RotatePoint extends BaseThing {
29535
29441
  readonly isStart: boolean;
29536
29442
  /**
29537
29443
  * 开始旋转
29538
- * @param point - 旋转的中心点
29444
+ * @param [point] - 旋转的中心点
29539
29445
  * @returns 无
29540
29446
  */
29541
- start(point: LngLatPoint | Cesium.Cartesian3 | number[]): void;
29447
+ start(point?: LngLatPoint | Cesium.Cartesian3 | number[]): void;
29542
29448
  /**
29543
29449
  * 停止旋转
29544
29450
  * @returns 无
@@ -30436,73 +30342,10 @@ declare class TilesetFlat extends TilesetEditBase {
30436
30342
  enabled?: boolean;
30437
30343
  eventParent?: BaseClass | boolean;
30438
30344
  });
30439
- /**
30440
- * 区域 列表
30441
- */
30442
- readonly list: any;
30443
- /**
30444
- * 需要分析的模型(3dtiles图层)
30445
- */
30446
- layer: TilesetLayer;
30447
- /**
30448
- * 需要分析的模型 对应的 Cesium3DTileset 对象
30449
- */
30450
- readonly tileset: Cesium.Cesium3DTileset;
30451
- /**
30452
- * 压平高度 (单位:米),基于压平区域最低点高度的偏移量
30453
- */
30454
- readonly layerHeight: number;
30455
- /**
30456
- * 坐标位置数组,只显示单个区域【单个区域场景时使用】
30457
- */
30458
- positions: any[][] | string[] | LngLatPoint[] | Cesium.Cartesian3[];
30459
- /**
30460
- * 已添加的区域个数
30461
- */
30462
- readonly length: number;
30463
- /**
30464
- * 添加单个区域
30465
- * @param positions - 坐标位置数组
30466
- * @param [options = {}] - 控制的参数
30467
- * @param [options.height] - 开挖深度(地形开挖时,可以控制单个区域的开挖深度)
30468
- * @returns 添加区域的记录对象
30469
- */
30470
- addArea(positions: string[] | any[][] | LngLatPoint[] | Cesium.Cartesian3[], options?: {
30471
- height?: any;
30472
- }): Promise<any>;
30473
- /**
30474
- * 根据id获取区域对象
30475
- * @param id - id值
30476
- * @returns 区域对象
30477
- */
30478
- getAreaById(id: number): any;
30479
- /**
30480
- * 隐藏单个区域
30481
- * @param id - 区域id值
30482
- * @returns 无
30483
- */
30484
- hideArea(id: number): void;
30485
- /**
30486
- * 显示单个区域
30487
- * @param id - 区域id值
30488
- * @returns 无
30489
- */
30490
- showArea(id: number): void;
30491
- /**
30492
- * 移除单个区域
30493
- * @param item - 区域的id,或 addArea返回的区域对象
30494
- * @returns 无
30495
- */
30496
- removeArea(item: number | any): void;
30497
30345
  /**
30498
30346
  * 压平高度 (单位:米),基于压平区域最低点高度的偏移量
30499
30347
  */
30500
30348
  height: number;
30501
- /**
30502
- * 清除分析
30503
- * @returns 无
30504
- */
30505
- clear(): void;
30506
30349
  }
30507
30350
 
30508
30351
  declare namespace TilesetFlood {
@@ -31308,6 +31151,12 @@ declare namespace DomUtil {
31308
31151
  * @returns class样式名称
31309
31152
  */
31310
31153
  function getClass(el: HTMLElement): string;
31154
+ /**
31155
+ * 复制canvas对象
31156
+ * @param oldCanvas - 原canvas对象
31157
+ * @returns 复制后的canvas对象
31158
+ */
31159
+ function copyCanvas(oldCanvas: HTMLCanvasElement): HTMLCanvasElement;
31311
31160
  }
31312
31161
 
31313
31162
  /**