mars3d 3.4.13 → 3.4.14

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.4.13
6
- * 编译日期:2022-11-07 22:57:50
5
+ * 版本信息:v3.4.14
6
+ * 编译日期:2022-11-22 21:42:41
7
7
  * 版权所有:Copyright by 火星科技 http://mars3d.cn
8
8
  * 使用单位:免费公开版 ,2022-06-01
9
9
  */
@@ -1690,7 +1690,7 @@ declare class BaseControl extends BaseThing {
1690
1690
  * @param options - 与类的构造方法参数相同
1691
1691
  * @returns 当前对象本身,可以链式调用
1692
1692
  */
1693
- setOptions(options: any): BaseLayer;
1693
+ setOptions(options: any): BaseThing | BaseControl | any;
1694
1694
  }
1695
1695
 
1696
1696
  /**
@@ -2436,7 +2436,7 @@ declare class BaseThing extends BaseClass {
2436
2436
  * @param options - 与类的构造方法参数相同
2437
2437
  * @returns 当前对象本身,可以链式调用
2438
2438
  */
2439
- setOptions(options: any): BaseLayer;
2439
+ setOptions(options: any): BaseThing | BaseControl | any;
2440
2440
  /**
2441
2441
  * 当前类的构造参数
2442
2442
  */
@@ -3653,6 +3653,11 @@ declare class BaseGraphic extends BaseClass {
3653
3653
  getRectangle(options?: {
3654
3654
  isFormat?: boolean;
3655
3655
  }): Cesium.Rectangle | any;
3656
+ /**
3657
+ * 获取数据的最大高度
3658
+ * @returns 高度
3659
+ */
3660
+ getMaxHeight(): number;
3656
3661
  /**
3657
3662
  * 飞行定位至 数据所在的视角
3658
3663
  * @param [options = {}] - 参数对象:
@@ -3926,7 +3931,7 @@ declare class BaseCombine extends BasePrimitive {
3926
3931
  * @param [options.instances.style] - 样式信息
3927
3932
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
3928
3933
  * @param [options.style] - 所有面的公共样式信息
3929
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
3934
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
3930
3935
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
3931
3936
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
3932
3937
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -3995,7 +4000,7 @@ declare class BasePointCombine extends BasePolyCombine {
3995
4000
  * @param [options.instances.style] - 样式信息
3996
4001
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
3997
4002
  * @param [options.style] - 所有面的公共样式信息
3998
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4003
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
3999
4004
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4000
4005
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4001
4006
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4081,7 +4086,7 @@ declare class BasePolyCombine extends BaseCombine {
4081
4086
  * @param [options.instances.style] - 样式信息
4082
4087
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4083
4088
  * @param [options.style] - 所有面的公共样式信息
4084
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4089
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4085
4090
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4086
4091
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4087
4092
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4150,7 +4155,7 @@ declare class BoxCombine extends BasePointCombine {
4150
4155
  * @param [options.instances.style] - 样式信息
4151
4156
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4152
4157
  * @param [options.style] - 所有面的公共样式信息
4153
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4158
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4154
4159
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4155
4160
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4156
4161
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4219,6 +4224,8 @@ declare class CircleCombine extends BasePointCombine {
4219
4224
  * @param [options.instances.style] - 样式信息
4220
4225
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4221
4226
  * @param [options.style] - 所有线的公共样式信息
4227
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4228
+ * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4222
4229
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4223
4230
  * @param [options.attributes] - [cesium原生]每个实例的属性。
4224
4231
  * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
@@ -4250,6 +4257,9 @@ declare class CorridorCombine extends BasePolyCombine {
4250
4257
  attr?: any;
4251
4258
  }[];
4252
4259
  style?: CorridorPrimitive.StyleOptions | any;
4260
+ highlight?: {
4261
+ type?: string;
4262
+ };
4253
4263
  appearance?: Cesium.Appearance;
4254
4264
  attributes?: Cesium.Appearance;
4255
4265
  depthFailAppearance?: Cesium.Appearance;
@@ -4283,7 +4293,7 @@ declare class CorridorCombine extends BasePolyCombine {
4283
4293
  * @param [options.instances.style] - 样式信息
4284
4294
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4285
4295
  * @param [options.style] - 所有面的公共样式信息
4286
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4296
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4287
4297
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4288
4298
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4289
4299
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4352,7 +4362,7 @@ declare class CylinderCombine extends BasePointCombine {
4352
4362
  * @param [options.instances.style] - 样式信息
4353
4363
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4354
4364
  * @param [options.style] - 所有面的公共样式信息
4355
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4365
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4356
4366
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4357
4367
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4358
4368
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4437,7 +4447,7 @@ declare namespace FlatBillboard {
4437
4447
  * @param options.instances.style - 样式信息
4438
4448
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4439
4449
  * @param [options.style] - 所有图标的公共样式信息
4440
- * @param [options.scale3d = 0.8] - 二维和三维模式切换后图标的缩放比例。因为二三维模式使用不同渲染方式,可能存在大小偏差,可以该参数调优。
4450
+ * @param [options.scale3d = 1] - 二维和三维模式切换后图标的缩放比例。因为二三维模式使用不同渲染方式,可能存在大小偏差,可以该参数调优。
4441
4451
  * @param [options.distanceDisplayCondition = new Cesium.DistanceDisplayCondition(0, 5000000)] - 指定数据将显示在与摄像机的多大距离
4442
4452
  * @param [options.translucent = false] - 当true时,将启用alpha混合。
4443
4453
  * @param [options.id = createGuid()] - 矢量数据id标识
@@ -4494,7 +4504,7 @@ declare class FlatBillboard extends BaseCombine {
4494
4504
  * @param [options.instances.style] - 样式信息
4495
4505
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4496
4506
  * @param [options.style] - 所有面的公共样式信息
4497
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4507
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4498
4508
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4499
4509
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4500
4510
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4641,7 +4651,7 @@ declare class ModelCombine extends BaseCombine {
4641
4651
  * @param [options.instances.style] - 样式信息
4642
4652
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4643
4653
  * @param [options.style] - 所有面的公共样式信息
4644
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4654
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4645
4655
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4646
4656
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4647
4657
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4710,7 +4720,7 @@ declare class PlaneCombine extends BasePointCombine {
4710
4720
  * @param [options.instances.style] - 样式信息
4711
4721
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4712
4722
  * @param [options.style] - 所有面的公共样式信息
4713
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4723
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4714
4724
  * // * @param {String} [options.highlight.type] 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4715
4725
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4716
4726
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4777,6 +4787,8 @@ declare class PolygonCombine extends BasePolyCombine {
4777
4787
  * @param [options.instances.style] - 样式信息
4778
4788
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4779
4789
  * @param [options.style] - 所有线的公共样式信息
4790
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4791
+ * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4780
4792
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4781
4793
  * @param [options.attributes] - [cesium原生]每个实例的属性。
4782
4794
  * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
@@ -4808,6 +4820,9 @@ declare class PolylineCombine extends BasePolyCombine {
4808
4820
  attr?: any;
4809
4821
  }[];
4810
4822
  style?: PolylinePrimitive.StyleOptions | any;
4823
+ highlight?: {
4824
+ type?: string;
4825
+ };
4811
4826
  appearance?: Cesium.Appearance;
4812
4827
  attributes?: Cesium.Appearance;
4813
4828
  depthFailAppearance?: Cesium.Appearance;
@@ -4841,6 +4856,8 @@ declare class PolylineCombine extends BasePolyCombine {
4841
4856
  * @param [options.instances.style] - 样式信息
4842
4857
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4843
4858
  * @param [options.style] - 所有线的公共样式信息
4859
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4860
+ * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4844
4861
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4845
4862
  * @param [options.attributes] - [cesium原生]每个实例的属性。
4846
4863
  * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
@@ -4872,6 +4889,9 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
4872
4889
  attr?: any;
4873
4890
  }[];
4874
4891
  style?: PolylineVolumePrimitive.StyleOptions | any;
4892
+ highlight?: {
4893
+ type?: string;
4894
+ };
4875
4895
  appearance?: Cesium.Appearance;
4876
4896
  attributes?: Cesium.Appearance;
4877
4897
  depthFailAppearance?: Cesium.Appearance;
@@ -4905,7 +4925,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
4905
4925
  * @param [options.instances.style] - 样式信息
4906
4926
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4907
4927
  * @param [options.style] - 所有面的公共样式信息
4908
- * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式
4928
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4909
4929
  * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4910
4930
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4911
4931
  * @param [options.attributes] - [cesium原生]每个实例的属性。
@@ -4974,6 +4994,8 @@ declare class RectangleCombine extends BasePolyCombine {
4974
4994
  * @param [options.instances.style] - 样式信息
4975
4995
  * @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
4976
4996
  * @param [options.style] - 所有线的公共样式信息
4997
+ * @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
4998
+ * @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
4977
4999
  * @param [options.appearance] - [cesium原生]用于渲染图元的外观。
4978
5000
  * @param [options.attributes] - [cesium原生]每个实例的属性。
4979
5001
  * @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
@@ -5005,6 +5027,9 @@ declare class WallCombine extends BasePolyCombine {
5005
5027
  attr?: any;
5006
5028
  }[];
5007
5029
  style?: WallPrimitive.StyleOptions | any;
5030
+ highlight?: {
5031
+ type?: string;
5032
+ };
5008
5033
  appearance?: Cesium.Appearance;
5009
5034
  attributes?: Cesium.Appearance;
5010
5035
  depthFailAppearance?: Cesium.Appearance;
@@ -5787,6 +5812,8 @@ declare namespace Tetrahedron {
5787
5812
  * @property [moveHeight = 30] - 动画时,上下移动的单程总高度,单位:米
5788
5813
  * @property [moveDuration = 2] - 动画时,上下移动的单程总时长,单位:秒
5789
5814
  * @property [rotationAngle = 1] - 动画时,每帧旋转的角度值,单位:度
5815
+ * @property [translucent = false] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
5816
+ * @property [closed = true] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
5790
5817
  */
5791
5818
  type StyleOptions = any | {
5792
5819
  width?: number;
@@ -5796,6 +5823,8 @@ declare namespace Tetrahedron {
5796
5823
  moveHeight?: number;
5797
5824
  moveDuration?: number;
5798
5825
  rotationAngle?: number;
5826
+ translucent?: boolean;
5827
+ closed?: boolean;
5799
5828
  };
5800
5829
  }
5801
5830
 
@@ -5990,6 +6019,10 @@ declare class ViewShed extends BasePointPrimitive {
5990
6019
  * 距离,单位:米
5991
6020
  */
5992
6021
  distance: number;
6022
+ /**
6023
+ * 场景的ShadowMap阴影图
6024
+ */
6025
+ readonly shadowMap: Cesium.ShadowMap;
5993
6026
  /**
5994
6027
  * 相机对象
5995
6028
  */
@@ -6815,7 +6848,7 @@ declare namespace Tooltip {
6815
6848
  * @param options.style - 样式信息
6816
6849
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
6817
6850
  * @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
6818
- * @param [options.pointerEvents = false] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
6851
+ * @param [options.pointerEvents = true] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
6819
6852
  * @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
6820
6853
  * @param [options.zIndex = "10000000"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
6821
6854
  * @param [options.depthTest = true] - 是否打开深度判断(true时判断是否在球背面)
@@ -12408,6 +12441,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
12408
12441
  * 坐标量算对象,
12409
12442
  * 非直接调用,由 Measure 类统一创建及管理
12410
12443
  * @param options - 参数对象,包括以下:
12444
+ * @param [options.crs = CRS.CGCS2000_GK_Zone_3] - 按指定坐标系显示坐标值,false不显示
12411
12445
  * @param options.position - 坐标位置
12412
12446
  * @param options.style - 样式信息
12413
12447
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
@@ -12431,6 +12465,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
12431
12465
  */
12432
12466
  declare class PointMeasure extends PointEntity {
12433
12467
  constructor(options: {
12468
+ crs?: string | CRS | boolean;
12434
12469
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
12435
12470
  style: PointEntity.StyleOptions | any;
12436
12471
  attr?: any;
@@ -16146,6 +16181,7 @@ declare namespace BaseGraphicLayer {
16146
16181
  * @param options.extent.ymax - 最大纬度值, -90 至 90
16147
16182
  * @param [options.extent.height = 0] - 矩形高度值
16148
16183
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16184
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
16149
16185
  */
16150
16186
  declare class BaseGraphicLayer extends BaseLayer {
16151
16187
  constructor(options?: {
@@ -16183,6 +16219,7 @@ declare class BaseGraphicLayer extends BaseLayer {
16183
16219
  height?: number;
16184
16220
  };
16185
16221
  flyTo?: boolean;
16222
+ flyToOptions?: any;
16186
16223
  });
16187
16224
  /**
16188
16225
  * 绑定鼠标移入或单击后的 对象高亮
@@ -16382,6 +16419,7 @@ declare class BaseGraphicLayer extends BaseLayer {
16382
16419
  * @param options.extent.ymax - 最大纬度值, -90 至 90
16383
16420
  * @param [options.extent.height] - 矩形高度值, 默认取地形高度值
16384
16421
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16422
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
16385
16423
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为map对象,false时不冒泡
16386
16424
  */
16387
16425
  declare class BaseLayer extends BaseClass {
@@ -16406,6 +16444,7 @@ declare class BaseLayer extends BaseClass {
16406
16444
  height?: number;
16407
16445
  };
16408
16446
  flyTo?: boolean;
16447
+ flyToOptions?: any;
16409
16448
  eventParent?: BaseClass | boolean;
16410
16449
  });
16411
16450
  /**
@@ -16648,6 +16687,7 @@ declare namespace CzmGeoJsonLayer {
16648
16687
  * @param options.extent.ymax - 最大纬度值, -90 至 90
16649
16688
  * @param [options.extent.height = 0] - 矩形高度值
16650
16689
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16690
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
16651
16691
  */
16652
16692
  declare class CzmGeoJsonLayer extends BaseGraphicLayer {
16653
16693
  constructor(options?: {
@@ -16696,6 +16736,7 @@ declare class CzmGeoJsonLayer extends BaseGraphicLayer {
16696
16736
  height?: number;
16697
16737
  };
16698
16738
  flyTo?: boolean;
16739
+ flyToOptions?: any;
16699
16740
  });
16700
16741
  /**
16701
16742
  * GeoJsonDataSource 对象
@@ -16727,13 +16768,13 @@ declare class CzmGeoJsonLayer extends BaseGraphicLayer {
16727
16768
  * @param [newOptions.url] - geojson文件或服务url地址
16728
16769
  * @param [newOptions.data] - geojson格式规范数据对象,与url二选一即可。
16729
16770
  * @param [newOptions.类参数] - 包含当前类支持的所有参数
16730
- * @returns 加载完成后的回调方法的Promise
16771
+ * @returns 当前对象本身,可以链式调用
16731
16772
  */
16732
16773
  load(newOptions?: {
16733
16774
  url?: string;
16734
16775
  data?: any;
16735
16776
  类参数?: any;
16736
- }): Promise<any>;
16777
+ }): CzmGeoJsonLayer;
16737
16778
  /**
16738
16779
  * 加载新数据 或 刷新数据
16739
16780
  * @param symbol - 设置新的symbol 矢量数据样式. {@link GraphicType}
@@ -16778,7 +16819,7 @@ declare class CzmGeoJsonLayer extends BaseGraphicLayer {
16778
16819
  * @param [options] - 控制参数
16779
16820
  * @returns 加载完成后的回调方法的Promise
16780
16821
  */
16781
- process(diejiaData: Resource | string | any, options?: any): Promise<any>;
16822
+ process(diejiaData: Cesium.Resource | string | any, options?: any): Promise<any>;
16782
16823
  /**
16783
16824
  * 飞行定位至图层数据所在的视角
16784
16825
  * @param [options = {}] - 参数对象:
@@ -16860,6 +16901,7 @@ declare class CzmGeoJsonLayer extends BaseGraphicLayer {
16860
16901
  * @param options.extent.ymax - 最大纬度值, -90 至 90
16861
16902
  * @param [options.extent.height = 0] - 矩形高度值
16862
16903
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
16904
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
16863
16905
  */
16864
16906
  declare class CzmlLayer extends CzmGeoJsonLayer {
16865
16907
  constructor(options?: {
@@ -16900,6 +16942,7 @@ declare class CzmlLayer extends CzmGeoJsonLayer {
16900
16942
  height?: number;
16901
16943
  };
16902
16944
  flyTo?: boolean;
16945
+ flyToOptions?: any;
16903
16946
  });
16904
16947
  /**
16905
16948
  * 加载新数据 或 刷新数据
@@ -16968,6 +17011,7 @@ declare class CzmlLayer extends CzmGeoJsonLayer {
16968
17011
  * @param options.extent.ymax - 最大纬度值, -90 至 90
16969
17012
  * @param [options.extent.height = 0] - 矩形高度值
16970
17013
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17014
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
16971
17015
  */
16972
17016
  declare class KmlLayer extends CzmGeoJsonLayer {
16973
17017
  constructor(options?: {
@@ -17015,6 +17059,7 @@ declare class KmlLayer extends CzmGeoJsonLayer {
17015
17059
  height?: number;
17016
17060
  };
17017
17061
  flyTo?: boolean;
17062
+ flyToOptions?: any;
17018
17063
  });
17019
17064
  /**
17020
17065
  * 加载新数据 或 刷新数据
@@ -17112,6 +17157,7 @@ declare class KmlLayer extends CzmGeoJsonLayer {
17112
17157
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
17113
17158
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
17114
17159
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17160
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
17115
17161
  */
17116
17162
  declare class ArcGisWfsLayer extends LodGraphicLayer {
17117
17163
  constructor(options?: {
@@ -17189,6 +17235,7 @@ declare class ArcGisWfsLayer extends LodGraphicLayer {
17189
17235
  roll?: number;
17190
17236
  };
17191
17237
  flyTo?: boolean;
17238
+ flyToOptions?: any;
17192
17239
  });
17193
17240
  /**
17194
17241
  * 更新where条件后 刷新数据
@@ -17248,6 +17295,7 @@ declare class ArcGisWfsLayer extends LodGraphicLayer {
17248
17295
  * @param options.extent.ymax - 最大纬度值, -90 至 90
17249
17296
  * @param [options.extent.height = 0] - 矩形高度值
17250
17297
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17298
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
17251
17299
  */
17252
17300
  declare class ArcGisWfsSingleLayer extends GeoJsonLayer {
17253
17301
  constructor(options?: {
@@ -17303,6 +17351,7 @@ declare class ArcGisWfsSingleLayer extends GeoJsonLayer {
17303
17351
  height?: number;
17304
17352
  };
17305
17353
  flyTo?: boolean;
17354
+ flyToOptions?: any;
17306
17355
  });
17307
17356
  /**
17308
17357
  * 更新where条件后 刷新数据
@@ -17398,6 +17447,7 @@ declare class ArcGisWfsSingleLayer extends GeoJsonLayer {
17398
17447
  * @param options.extent.ymax - 最大纬度值, -90 至 90
17399
17448
  * @param [options.extent.height = 0] - 矩形高度值
17400
17449
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17450
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
17401
17451
  */
17402
17452
  declare class BusineDataLayer extends GraphicLayer {
17403
17453
  constructor(options?: {
@@ -17474,6 +17524,7 @@ declare class BusineDataLayer extends GraphicLayer {
17474
17524
  height?: number;
17475
17525
  };
17476
17526
  flyTo?: boolean;
17527
+ flyToOptions?: any;
17477
17528
  });
17478
17529
  /**
17479
17530
  * 加载新数据 或 刷新数据
@@ -17538,6 +17589,7 @@ declare class BusineDataLayer extends GraphicLayer {
17538
17589
  * @param options.extent.ymax - 最大纬度值, -90 至 90
17539
17590
  * @param [options.extent.height = 0] - 矩形高度值
17540
17591
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17592
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
17541
17593
  */
17542
17594
  declare class GeodePoiLayer extends LodGraphicLayer {
17543
17595
  constructor(options?: {
@@ -17591,6 +17643,7 @@ declare class GeodePoiLayer extends LodGraphicLayer {
17591
17643
  height?: number;
17592
17644
  };
17593
17645
  flyTo?: boolean;
17646
+ flyToOptions?: any;
17594
17647
  });
17595
17648
  /**
17596
17649
  * 获取配置的高德Key(多个时轮询)
@@ -17739,6 +17792,7 @@ declare namespace GeoJsonLayer {
17739
17792
  * @param options.extent.ymax - 最大纬度值, -90 至 90
17740
17793
  * @param [options.extent.height = 0] - 矩形高度值
17741
17794
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17795
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
17742
17796
  */
17743
17797
  declare class GeoJsonLayer extends GraphicLayer {
17744
17798
  constructor(options?: {
@@ -17818,6 +17872,7 @@ declare class GeoJsonLayer extends GraphicLayer {
17818
17872
  height?: number;
17819
17873
  };
17820
17874
  flyTo?: boolean;
17875
+ flyToOptions?: any;
17821
17876
  });
17822
17877
  /**
17823
17878
  * 加载新数据 或 刷新数据
@@ -17856,6 +17911,7 @@ declare class GeoJsonLayer extends GraphicLayer {
17856
17911
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
17857
17912
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
17858
17913
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
17914
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
17859
17915
  */
17860
17916
  declare class GraphicGroupLayer extends GroupLayer {
17861
17917
  constructor(options?: {
@@ -17879,6 +17935,7 @@ declare class GraphicGroupLayer extends GroupLayer {
17879
17935
  roll?: number;
17880
17936
  };
17881
17937
  flyTo?: boolean;
17938
+ flyToOptions?: any;
17882
17939
  });
17883
17940
  /**
17884
17941
  * 是否可以编辑
@@ -18156,6 +18213,7 @@ declare namespace GraphicLayer {
18156
18213
  * @param options.extent.ymax - 最大纬度值, -90 至 90
18157
18214
  * @param [options.extent.height = 0] - 矩形高度值
18158
18215
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
18216
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
18159
18217
  */
18160
18218
  declare class GraphicLayer extends BaseGraphicLayer {
18161
18219
  constructor(options?: {
@@ -18221,6 +18279,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
18221
18279
  height?: number;
18222
18280
  };
18223
18281
  flyTo?: boolean;
18282
+ flyToOptions?: any;
18224
18283
  });
18225
18284
  /**
18226
18285
  * 完成标绘时是否自动启动编辑(需要hasEdit:true时)
@@ -18291,6 +18350,11 @@ declare class GraphicLayer extends BaseGraphicLayer {
18291
18350
  * @returns isFormat:true时,返回格式化对象,isFormat:false时返回Cesium.Rectangle对象
18292
18351
  */
18293
18352
  getRectangle(isFormat?: boolean): Cesium.Rectangle | any;
18353
+ /**
18354
+ * 获取图层内所有数据的 最大高度
18355
+ * @returns 高度
18356
+ */
18357
+ getMaxHeight(): number;
18294
18358
  /**
18295
18359
  * 将图层数据导出为GeoJSON格式规范对象。
18296
18360
  * @param [options] - 参数对象:
@@ -18522,6 +18586,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
18522
18586
  * @param options.extent.ymax - 最大纬度值, -90 至 90
18523
18587
  * @param [options.extent.height = 0] - 矩形高度值
18524
18588
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
18589
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
18525
18590
  */
18526
18591
  declare class GraticuleLayer extends BaseLayer {
18527
18592
  constructor(options?: {
@@ -18549,6 +18614,7 @@ declare class GraticuleLayer extends BaseLayer {
18549
18614
  height?: number;
18550
18615
  };
18551
18616
  flyTo?: boolean;
18617
+ flyToOptions?: any;
18552
18618
  });
18553
18619
  /**
18554
18620
  * 对象添加到地图前创建一些对象的钩子方法,
@@ -18662,6 +18728,7 @@ declare namespace LodGraphicLayer {
18662
18728
  * @param options.extent.ymax - 最大纬度值, -90 至 90
18663
18729
  * @param [options.extent.height = 0] - 矩形高度值
18664
18730
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
18731
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
18665
18732
  */
18666
18733
  declare class LodGraphicLayer extends GraphicLayer {
18667
18734
  constructor(options?: {
@@ -18732,6 +18799,7 @@ declare class LodGraphicLayer extends GraphicLayer {
18732
18799
  height?: number;
18733
18800
  };
18734
18801
  flyTo?: boolean;
18802
+ flyToOptions?: any;
18735
18803
  });
18736
18804
  /**
18737
18805
  * 根据LOD分块信息去请求对应的Tile瓦块内的数据
@@ -18811,6 +18879,7 @@ declare class LodGraphicLayer extends GraphicLayer {
18811
18879
  * @param options.extent.ymax - 最大纬度值, -90 至 90
18812
18880
  * @param [options.extent.height = 0] - 矩形高度值
18813
18881
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
18882
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
18814
18883
  */
18815
18884
  declare class OsmBuildingsLayer extends TilesetLayer {
18816
18885
  constructor(options: {
@@ -18861,6 +18930,7 @@ declare class OsmBuildingsLayer extends TilesetLayer {
18861
18930
  height?: number;
18862
18931
  };
18863
18932
  flyTo?: boolean;
18933
+ flyToOptions?: any;
18864
18934
  });
18865
18935
  }
18866
18936
 
@@ -19007,6 +19077,7 @@ declare namespace TilesetLayer {
19007
19077
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
19008
19078
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
19009
19079
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
19080
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
19010
19081
  */
19011
19082
  declare class TilesetLayer extends BaseGraphicLayer {
19012
19083
  constructor(options: {
@@ -19103,6 +19174,7 @@ declare class TilesetLayer extends BaseGraphicLayer {
19103
19174
  roll?: number;
19104
19175
  };
19105
19176
  flyTo?: boolean;
19177
+ flyToOptions?: any;
19106
19178
  });
19107
19179
  /**
19108
19180
  * 原始的旋转角度,示例:{ x: 0, y: 0, z: 0 }
@@ -19450,6 +19522,7 @@ declare class TilesetLayer extends BaseGraphicLayer {
19450
19522
  * @param options.extent.ymax - 最大纬度值, -90 至 90
19451
19523
  * @param [options.extent.height = 0] - 矩形高度值
19452
19524
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
19525
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
19453
19526
  */
19454
19527
  declare class WfsLayer extends LodGraphicLayer {
19455
19528
  constructor(options?: {
@@ -19542,6 +19615,7 @@ declare class WfsLayer extends LodGraphicLayer {
19542
19615
  height?: number;
19543
19616
  };
19544
19617
  flyTo?: boolean;
19618
+ flyToOptions?: any;
19545
19619
  });
19546
19620
  }
19547
19621
 
@@ -19562,6 +19636,7 @@ declare class WfsLayer extends LodGraphicLayer {
19562
19636
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
19563
19637
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
19564
19638
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
19639
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
19565
19640
  */
19566
19641
  declare class GroupLayer extends BaseGraphicLayer {
19567
19642
  constructor(options?: {
@@ -19580,6 +19655,7 @@ declare class GroupLayer extends BaseGraphicLayer {
19580
19655
  roll?: number;
19581
19656
  };
19582
19657
  flyTo?: boolean;
19658
+ flyToOptions?: any;
19583
19659
  });
19584
19660
  /**
19585
19661
  * 子图层对象数组
@@ -19688,6 +19764,8 @@ declare class GroupLayer extends BaseGraphicLayer {
19688
19764
  * @param [options.pid = -1] - 图层父级的id,一般图层管理中使用
19689
19765
  * @param [options.name = ''] - 图层名称
19690
19766
  * @param [options.show = true] - 图层是否显示(多个地形服务时,请只设置一个TerrainLayer图层的show为tue)
19767
+ * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
19768
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
19691
19769
  */
19692
19770
  declare class TerrainLayer extends BaseLayer {
19693
19771
  constructor(options?: {
@@ -19702,6 +19780,8 @@ declare class TerrainLayer extends BaseLayer {
19702
19780
  pid?: string | number;
19703
19781
  name?: string;
19704
19782
  show?: boolean;
19783
+ flyTo?: boolean;
19784
+ flyToOptions?: any;
19705
19785
  });
19706
19786
  }
19707
19787
 
@@ -19779,6 +19859,7 @@ declare class TerrainLayer extends BaseLayer {
19779
19859
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
19780
19860
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
19781
19861
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
19862
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
19782
19863
  */
19783
19864
  declare class ArcGisCacheLayer extends BaseTileLayer {
19784
19865
  constructor(options?: {
@@ -19838,6 +19919,7 @@ declare class ArcGisCacheLayer extends BaseTileLayer {
19838
19919
  roll?: number;
19839
19920
  };
19840
19921
  flyTo?: boolean;
19922
+ flyToOptions?: any;
19841
19923
  });
19842
19924
  /**
19843
19925
  * 创建用于图层的 ImageryProvider对象
@@ -19941,6 +20023,7 @@ declare namespace ArcGisLayer {
19941
20023
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
19942
20024
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
19943
20025
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
20026
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
19944
20027
  */
19945
20028
  declare class ArcGisLayer extends BaseTileLayer {
19946
20029
  constructor(options?: {
@@ -20016,6 +20099,7 @@ declare class ArcGisLayer extends BaseTileLayer {
20016
20099
  roll?: number;
20017
20100
  };
20018
20101
  flyTo?: boolean;
20102
+ flyToOptions?: any;
20019
20103
  });
20020
20104
  /**
20021
20105
  * 坐标系
@@ -20130,6 +20214,7 @@ declare class ArcGisLayer extends BaseTileLayer {
20130
20214
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
20131
20215
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
20132
20216
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
20217
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
20133
20218
  */
20134
20219
  declare class ArcGisTileLayer extends BaseTileLayer {
20135
20220
  constructor(options?: {
@@ -20188,6 +20273,7 @@ declare class ArcGisTileLayer extends BaseTileLayer {
20188
20273
  roll?: number;
20189
20274
  };
20190
20275
  flyTo?: boolean;
20276
+ flyToOptions?: any;
20191
20277
  });
20192
20278
  /**
20193
20279
  * 创建用于图层的 ImageryProvider对象
@@ -20267,6 +20353,7 @@ declare class ArcGisTileLayer extends BaseTileLayer {
20267
20353
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
20268
20354
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
20269
20355
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
20356
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
20270
20357
  */
20271
20358
  declare class BaiduLayer extends BaseTileLayer {
20272
20359
  constructor(options?: {
@@ -20325,6 +20412,7 @@ declare class BaiduLayer extends BaseTileLayer {
20325
20412
  roll?: number;
20326
20413
  };
20327
20414
  flyTo?: boolean;
20415
+ flyToOptions?: any;
20328
20416
  });
20329
20417
  /**
20330
20418
  * 创建用于图层的 ImageryProvider对象
@@ -20435,6 +20523,7 @@ declare namespace BaseTileLayer {
20435
20523
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
20436
20524
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
20437
20525
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
20526
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
20438
20527
  */
20439
20528
  declare class BaseTileLayer extends BaseLayer {
20440
20529
  constructor(options?: {
@@ -20492,6 +20581,7 @@ declare class BaseTileLayer extends BaseLayer {
20492
20581
  roll?: number;
20493
20582
  };
20494
20583
  flyTo?: boolean;
20584
+ flyToOptions?: any;
20495
20585
  });
20496
20586
  /**
20497
20587
  * 当前是否为瓦片图层
@@ -20705,6 +20795,7 @@ declare class BaseTileLayer extends BaseLayer {
20705
20795
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
20706
20796
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
20707
20797
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
20798
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
20708
20799
  */
20709
20800
  declare class BingLayer extends BaseTileLayer {
20710
20801
  constructor(options?: {
@@ -20764,6 +20855,7 @@ declare class BingLayer extends BaseTileLayer {
20764
20855
  roll?: number;
20765
20856
  };
20766
20857
  flyTo?: boolean;
20858
+ flyToOptions?: any;
20767
20859
  });
20768
20860
  /**
20769
20861
  * 创建用于图层的 ImageryProvider对象
@@ -20817,6 +20909,7 @@ declare class BingLayer extends BaseTileLayer {
20817
20909
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
20818
20910
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
20819
20911
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
20912
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
20820
20913
  */
20821
20914
  declare class EmptyTileLayer extends BaseTileLayer {
20822
20915
  constructor(options?: {
@@ -20845,6 +20938,7 @@ declare class EmptyTileLayer extends BaseTileLayer {
20845
20938
  roll?: number;
20846
20939
  };
20847
20940
  flyTo?: boolean;
20941
+ flyToOptions?: any;
20848
20942
  });
20849
20943
  /**
20850
20944
  * 判断级别是否在当前图层的最大最小层级范围内
@@ -20930,6 +21024,7 @@ declare class EmptyTileLayer extends BaseTileLayer {
20930
21024
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
20931
21025
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
20932
21026
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21027
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
20933
21028
  */
20934
21029
  declare class GaodeLayer extends BaseTileLayer {
20935
21030
  constructor(options?: {
@@ -20989,6 +21084,7 @@ declare class GaodeLayer extends BaseTileLayer {
20989
21084
  roll?: number;
20990
21085
  };
20991
21086
  flyTo?: boolean;
21087
+ flyToOptions?: any;
20992
21088
  });
20993
21089
  /**
20994
21090
  * 创建用于图层的 ImageryProvider对象
@@ -21061,6 +21157,7 @@ declare class GaodeLayer extends BaseTileLayer {
21061
21157
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21062
21158
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21063
21159
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21160
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21064
21161
  */
21065
21162
  declare class GeeLayer extends BaseTileLayer {
21066
21163
  constructor(options?: {
@@ -21119,6 +21216,7 @@ declare class GeeLayer extends BaseTileLayer {
21119
21216
  roll?: number;
21120
21217
  };
21121
21218
  flyTo?: boolean;
21219
+ flyToOptions?: any;
21122
21220
  });
21123
21221
  /**
21124
21222
  * 创建用于图层的 ImageryProvider对象
@@ -21198,6 +21296,7 @@ declare class GeeLayer extends BaseTileLayer {
21198
21296
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21199
21297
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21200
21298
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21299
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21201
21300
  */
21202
21301
  declare class GoogleLayer extends BaseTileLayer {
21203
21302
  constructor(options?: {
@@ -21257,6 +21356,7 @@ declare class GoogleLayer extends BaseTileLayer {
21257
21356
  roll?: number;
21258
21357
  };
21259
21358
  flyTo?: boolean;
21359
+ flyToOptions?: any;
21260
21360
  });
21261
21361
  /**
21262
21362
  * 创建用于图层的 ImageryProvider对象
@@ -21325,6 +21425,7 @@ declare class GoogleLayer extends BaseTileLayer {
21325
21425
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21326
21426
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21327
21427
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21428
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21328
21429
  */
21329
21430
  declare class GridLayer extends BaseTileLayer {
21330
21431
  constructor(options?: {
@@ -21380,6 +21481,7 @@ declare class GridLayer extends BaseTileLayer {
21380
21481
  roll?: number;
21381
21482
  };
21382
21483
  flyTo?: boolean;
21484
+ flyToOptions?: any;
21383
21485
  });
21384
21486
  /**
21385
21487
  * 创建瓦片图层对应的ImageryProvider对象
@@ -21443,6 +21545,7 @@ declare class GridLayer extends BaseTileLayer {
21443
21545
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21444
21546
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21445
21547
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21548
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21446
21549
  */
21447
21550
  declare class ImageLayer extends BaseTileLayer {
21448
21551
  constructor(options?: {
@@ -21499,6 +21602,7 @@ declare class ImageLayer extends BaseTileLayer {
21499
21602
  roll?: number;
21500
21603
  };
21501
21604
  flyTo?: boolean;
21605
+ flyToOptions?: any;
21502
21606
  });
21503
21607
  /**
21504
21608
  * 创建用于图层的 ImageryProvider对象
@@ -21573,6 +21677,7 @@ declare class ImageLayer extends BaseTileLayer {
21573
21677
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21574
21678
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21575
21679
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21680
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21576
21681
  */
21577
21682
  declare class IonLayer extends BaseTileLayer {
21578
21683
  constructor(options?: {
@@ -21633,6 +21738,7 @@ declare class IonLayer extends BaseTileLayer {
21633
21738
  roll?: number;
21634
21739
  };
21635
21740
  flyTo?: boolean;
21741
+ flyToOptions?: any;
21636
21742
  });
21637
21743
  /**
21638
21744
  * 创建用于图层的 ImageryProvider对象
@@ -21710,6 +21816,7 @@ declare class IonLayer extends BaseTileLayer {
21710
21816
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21711
21817
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21712
21818
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21819
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21713
21820
  */
21714
21821
  declare class MapboxLayer extends BaseTileLayer {
21715
21822
  constructor(options?: {
@@ -21773,6 +21880,7 @@ declare class MapboxLayer extends BaseTileLayer {
21773
21880
  roll?: number;
21774
21881
  };
21775
21882
  flyTo?: boolean;
21883
+ flyToOptions?: any;
21776
21884
  });
21777
21885
  /**
21778
21886
  * 创建用于图层的 ImageryProvider对象
@@ -21840,6 +21948,7 @@ declare class MapboxLayer extends BaseTileLayer {
21840
21948
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21841
21949
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21842
21950
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
21951
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21843
21952
  */
21844
21953
  declare class OsmLayer extends BaseTileLayer {
21845
21954
  constructor(options?: {
@@ -21894,6 +22003,7 @@ declare class OsmLayer extends BaseTileLayer {
21894
22003
  roll?: number;
21895
22004
  };
21896
22005
  flyTo?: boolean;
22006
+ flyToOptions?: any;
21897
22007
  });
21898
22008
  /**
21899
22009
  * 创建用于图层的 ImageryProvider对象
@@ -21975,6 +22085,7 @@ declare class OsmLayer extends BaseTileLayer {
21975
22085
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
21976
22086
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
21977
22087
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
22088
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
21978
22089
  */
21979
22090
  declare class TdtLayer extends BaseTileLayer {
21980
22091
  constructor(options?: {
@@ -22033,6 +22144,7 @@ declare class TdtLayer extends BaseTileLayer {
22033
22144
  roll?: number;
22034
22145
  };
22035
22146
  flyTo?: boolean;
22147
+ flyToOptions?: any;
22036
22148
  });
22037
22149
  /**
22038
22150
  * 创建用于图层的 ImageryProvider对象
@@ -22109,6 +22221,7 @@ declare class TdtLayer extends BaseTileLayer {
22109
22221
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
22110
22222
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
22111
22223
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
22224
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
22112
22225
  */
22113
22226
  declare class TencentLayer extends BaseTileLayer {
22114
22227
  constructor(options?: {
@@ -22166,6 +22279,7 @@ declare class TencentLayer extends BaseTileLayer {
22166
22279
  roll?: number;
22167
22280
  };
22168
22281
  flyTo?: boolean;
22282
+ flyToOptions?: any;
22169
22283
  });
22170
22284
  /**
22171
22285
  * 创建用于图层的 ImageryProvider对象
@@ -22227,6 +22341,7 @@ declare class TencentLayer extends BaseTileLayer {
22227
22341
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
22228
22342
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
22229
22343
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
22344
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
22230
22345
  */
22231
22346
  declare class TileInfoLayer extends BaseTileLayer {
22232
22347
  constructor(options?: {
@@ -22275,6 +22390,7 @@ declare class TileInfoLayer extends BaseTileLayer {
22275
22390
  roll?: number;
22276
22391
  };
22277
22392
  flyTo?: boolean;
22393
+ flyToOptions?: any;
22278
22394
  });
22279
22395
  /**
22280
22396
  * 创建瓦片图层对应的ImageryProvider对象
@@ -22343,6 +22459,7 @@ declare class TileInfoLayer extends BaseTileLayer {
22343
22459
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
22344
22460
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
22345
22461
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
22462
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
22346
22463
  */
22347
22464
  declare class TmsLayer extends BaseTileLayer {
22348
22465
  constructor(options?: {
@@ -22403,6 +22520,7 @@ declare class TmsLayer extends BaseTileLayer {
22403
22520
  roll?: number;
22404
22521
  };
22405
22522
  flyTo?: boolean;
22523
+ flyToOptions?: any;
22406
22524
  });
22407
22525
  /**
22408
22526
  * 创建用于图层的 ImageryProvider对象
@@ -22478,6 +22596,10 @@ declare class TmsLayer extends BaseTileLayer {
22478
22596
  * @param [options.tileWidth = 256] - 图像图块的像素宽度。
22479
22597
  * @param [options.tileHeight = 256] - 图像图块的像素高度。
22480
22598
  * @param [options.customTags] - 允许替换网址模板中的自定义关键字。该对象必须具有字符串作为键,并且必须具有值。
22599
+ * @param [options.proxy] - 加载资源时要使用的代理服务url。
22600
+ * @param [options.templateValues] - 一个对象,用于替换Url中的模板值的键/值对
22601
+ * @param [options.queryParameters] - 一个对象,其中包含在检索资源时将发送的查询参数。比如:queryParameters: {'access_token': '123-435-456-000'},
22602
+ * @param [options.headers] - 一个对象,将发送的其他HTTP标头。比如:headers: { 'X-My-Header': 'valueOfHeader' },
22481
22603
  * @param [options.id = createGuid()] - 图层id标识
22482
22604
  * @param [options.pid = -1] - 图层父级的id,一般图层管理中使用
22483
22605
  * @param [options.name = ''] - 图层名称
@@ -22491,6 +22613,7 @@ declare class TmsLayer extends BaseTileLayer {
22491
22613
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
22492
22614
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度,-90至90
22493
22615
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
22616
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
22494
22617
  */
22495
22618
  declare class WmsLayer extends BaseTileLayer {
22496
22619
  constructor(options?: {
@@ -22554,6 +22677,10 @@ declare class WmsLayer extends BaseTileLayer {
22554
22677
  tileWidth?: number;
22555
22678
  tileHeight?: number;
22556
22679
  customTags?: any;
22680
+ proxy?: string;
22681
+ templateValues?: any;
22682
+ queryParameters?: any;
22683
+ headers?: any;
22557
22684
  id?: string | number;
22558
22685
  pid?: string | number;
22559
22686
  name?: string;
@@ -22568,6 +22695,7 @@ declare class WmsLayer extends BaseTileLayer {
22568
22695
  roll?: number;
22569
22696
  };
22570
22697
  flyTo?: boolean;
22698
+ flyToOptions?: any;
22571
22699
  });
22572
22700
  /**
22573
22701
  * 是否存在Popup绑定
@@ -22678,6 +22806,7 @@ declare class WmsLayer extends BaseTileLayer {
22678
22806
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
22679
22807
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
22680
22808
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
22809
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
22681
22810
  */
22682
22811
  declare class WmtsLayer extends BaseTileLayer {
22683
22812
  constructor(options?: {
@@ -22748,6 +22877,7 @@ declare class WmtsLayer extends BaseTileLayer {
22748
22877
  roll?: number;
22749
22878
  };
22750
22879
  flyTo?: boolean;
22880
+ flyToOptions?: any;
22751
22881
  });
22752
22882
  /**
22753
22883
  * 创建用于图层的 ImageryProvider对象
@@ -22870,6 +23000,7 @@ declare class WmtsLayer extends BaseTileLayer {
22870
23000
  * @param [options.center.pitch] - 俯仰角度值,绕纬度线旋转角度, -90至90
22871
23001
  * @param [options.center.roll] - 翻滚角度值,绕经度线旋转角度, -90至90
22872
23002
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
23003
+ * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseLayer#flyTo}方法参数。
22873
23004
  */
22874
23005
  declare class XyzLayer extends BaseTileLayer {
22875
23006
  constructor(options?: {
@@ -22931,6 +23062,7 @@ declare class XyzLayer extends BaseTileLayer {
22931
23062
  roll?: number;
22932
23063
  };
22933
23064
  flyTo?: boolean;
23065
+ flyToOptions?: any;
22934
23066
  });
22935
23067
  /**
22936
23068
  * 创建用于图层的 ImageryProvider对象
@@ -23752,6 +23884,12 @@ declare class Map extends BaseClass {
23752
23884
  * 是否全局启用highlight ,如果在某些场景,如标绘时,可以手动关闭下
23753
23885
  */
23754
23886
  highlightEnabled: boolean;
23887
+ /**
23888
+ * 设置Map所有参数构造参数 【测试中功能,可能部分参数无法更新,欢迎反馈问题 】
23889
+ * @param newOptions - Map所有参数构造参数
23890
+ * @returns 当前对象本身,可以链式调用
23891
+ */
23892
+ setOptions(newOptions: any): Map;
23755
23893
  /**
23756
23894
  * 设置Scene场景参数
23757
23895
  * @param options - 参数
@@ -24390,13 +24528,25 @@ declare class Map extends BaseClass {
24390
24528
  */
24391
24529
  isFlyAnimation(): boolean;
24392
24530
  /**
24393
- * 执行开场动画,动画播放地球飞行定位到指定区域
24531
+ * 执行开场动画,动画播放地球飞行定位到指定区域(1.旋转地球+2.降低高度+3.指定视角)
24394
24532
  * @param [options = {}] - 参数对象:
24395
24533
  * @param [options.center = getCameraView()] - 飞行到的指定区域视角参数
24534
+ * @param [options.duration1 = 2] - 第一步旋转地球时长,单位:秒
24535
+ * @param [options.easingFunction1 = Cesium.EasingFunction.LINEAR_NONE] - 第一步旋转地球飞行中,控制如何在飞行期间内插值时间参数。
24536
+ * @param [options.duration2 = 2] - 第二步降低高度时长,单位:秒
24537
+ * @param [options.easingFunction2] - 第二步降低高度飞行中,控制如何在飞行期间内插值时间参数。
24538
+ * @param [options.duration3 = 2] - 第三步指定视角飞行时长,单位:秒
24539
+ * @param [options.easingFunction3] - 第三步指定视角飞行中,控制如何在飞行期间内插值时间参数。
24396
24540
  * @returns 如果飞行成功则解析为true的承诺,如果当前未在场景中可视化目标或取消飞行,则为false的Promise
24397
24541
  */
24398
24542
  openFlyAnimation(options?: {
24399
24543
  center?: any;
24544
+ duration1?: number;
24545
+ easingFunction1?: Cesium.EasingFunction.Callback;
24546
+ duration2?: number;
24547
+ easingFunction2?: Cesium.EasingFunction.Callback;
24548
+ duration3?: number;
24549
+ easingFunction3?: Cesium.EasingFunction.Callback;
24400
24550
  }): Promise<boolean>;
24401
24551
  /**
24402
24552
  * 执行旋转地球动画
@@ -26725,6 +26875,8 @@ declare namespace CamberRadar {
26725
26875
  * @property [heading = 0] - 方向角 (度数值,0-360度)
26726
26876
  * @property [pitch = 0] - 俯仰角(度数值,0-360度)
26727
26877
  * @property [roll = 0] - 翻滚角(度数值,0-360度)
26878
+ * @property [translucent = true] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
26879
+ * @property [closed = true] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
26728
26880
  */
26729
26881
  type StyleOptions = any | {
26730
26882
  color?: string | Cesium.Color;
@@ -26744,6 +26896,8 @@ declare namespace CamberRadar {
26744
26896
  heading?: number;
26745
26897
  pitch?: number;
26746
26898
  roll?: number;
26899
+ translucent?: boolean;
26900
+ closed?: boolean;
26747
26901
  };
26748
26902
  }
26749
26903
 
@@ -26838,6 +26992,8 @@ declare namespace ConicSensor {
26838
26992
  * @property [hideRayEllipsoid = false] - 在地球相交时 是否隐藏
26839
26993
  * @property [flat = false] - 当true时,在片段着色器中使用平面着色,不考虑光照。
26840
26994
  * @property [faceForward = false] - 当true时,片段着色器根据需要翻转表面的法线,以确保法线面向查看器以避免黑点。
26995
+ * @property [translucent = true] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
26996
+ * @property [closed = true] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
26841
26997
  */
26842
26998
  type StyleOptions = any | {
26843
26999
  angle?: number;
@@ -26856,6 +27012,8 @@ declare namespace ConicSensor {
26856
27012
  hideRayEllipsoid?: boolean;
26857
27013
  flat?: boolean;
26858
27014
  faceForward?: boolean;
27015
+ translucent?: boolean;
27016
+ closed?: boolean;
26859
27017
  };
26860
27018
  }
26861
27019
 
@@ -27010,6 +27168,8 @@ declare namespace RectSensor {
27010
27168
  * @property [hideRayEllipsoid = false] - 在地球相交时 是否隐藏
27011
27169
  * @property [flat = false] - 当true时,在片段着色器中使用平面着色,不考虑光照。
27012
27170
  * @property [faceForward = false] - 当true时,片段着色器根据需要翻转表面的法线,以确保法线面向查看器以避免黑点。
27171
+ * @property [translucent = true] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
27172
+ * @property [closed = false] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
27013
27173
  */
27014
27174
  type StyleOptions = any | {
27015
27175
  angle1?: number;
@@ -27030,6 +27190,8 @@ declare namespace RectSensor {
27030
27190
  hideRayEllipsoid?: boolean;
27031
27191
  flat?: boolean;
27032
27192
  faceForward?: boolean;
27193
+ translucent?: boolean;
27194
+ closed?: boolean;
27033
27195
  };
27034
27196
  }
27035
27197
 
@@ -27357,6 +27519,8 @@ declare namespace SatelliteSensor {
27357
27519
  * @property [outline = false] - 是否显示边线
27358
27520
  * @property [outlineColor = color] - 边线颜色
27359
27521
  * @property [rayEllipsoid = false] - 是否求交地球计算
27522
+ * @property [translucent = true] - 当true时,几何图形将显示为半透明,因此{@link Cesium.PerInstanceColorAppearance#renderState}将启用alpha混合。
27523
+ * @property [closed = false] - 当true时,几何图形将被关闭,因此{@link Cesium.PerInstanceColorAppearance#renderState}启用了背面剔除。
27360
27524
  */
27361
27525
  type StyleOptions = any | {
27362
27526
  sensorType?: SatelliteSensor.Type;
@@ -27372,6 +27536,8 @@ declare namespace SatelliteSensor {
27372
27536
  outline?: boolean;
27373
27537
  outlineColor?: string | Cesium.Color;
27374
27538
  rayEllipsoid?: boolean;
27539
+ translucent?: boolean;
27540
+ closed?: boolean;
27375
27541
  };
27376
27542
  /**
27377
27543
  * 视锥体类型
@@ -29945,6 +30111,10 @@ declare class Shadows extends BaseThing {
29945
30111
  enabled?: boolean;
29946
30112
  eventParent?: BaseClass | boolean;
29947
30113
  });
30114
+ /**
30115
+ * 场景的ShadowMap阴影图
30116
+ */
30117
+ readonly shadowMap: Cesium.ShadowMap;
29948
30118
  /**
29949
30119
  * 当前时间
29950
30120
  */
@@ -30093,12 +30263,6 @@ declare class Skyline extends BaseThing {
30093
30263
  * 天际线宽度
30094
30264
  */
30095
30265
  width: number;
30096
- /**
30097
- * 销毁当前对象
30098
- * @param [noDel = false] - false:会自动delete释放所有属性,true:不delete绑定的变量
30099
- * @returns 无
30100
- */
30101
- destroy(noDel?: boolean): void;
30102
30266
  }
30103
30267
 
30104
30268
  /**