mars3d 3.6.2 → 3.6.3

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.6.2
6
- * 编译日期:2023-08-21 21:14:00
5
+ * 版本信息:v3.6.3
6
+ * 编译日期:2023-08-29 15:40:10
7
7
  * 版权所有:Copyright by 火星科技 http://mars3d.cn
8
8
  * 使用单位:免费公开版 ,2023-03-17
9
9
  */
@@ -1104,7 +1104,8 @@ declare enum LayerType {
1104
1104
  wfs,
1105
1105
  arcgis_wfs,
1106
1106
  arcgis_wfs_single,
1107
- tileset或3dtiles,
1107
+ tileset,
1108
+ i3s,
1108
1109
  czmGeojson,
1109
1110
  kml,
1110
1111
  czml,
@@ -2002,12 +2003,14 @@ declare class ProjectionPicker extends BaseCzmControl {
2002
2003
  /**
2003
2004
  * 二三维切换按钮 控件 (Cesium原生)
2004
2005
  * @param [options] - 参数对象,包括以下:
2006
+ * @param [options.duration = 0] - 切换时动画的秒数
2005
2007
  * @param [options.id = createGuid()] - 对象的id标识
2006
2008
  * @param [options.enabled = true] - 对象的启用状态
2007
2009
  * @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
2008
2010
  */
2009
2011
  declare class SceneModePicker extends BaseCzmControl {
2010
2012
  constructor(options?: {
2013
+ duration?: number;
2011
2014
  id?: string | number;
2012
2015
  enabled?: boolean;
2013
2016
  parentContainer?: HTMLElement;
@@ -2036,7 +2039,7 @@ declare class Timeline extends BaseCzmControl {
2036
2039
  constructor(options?: {
2037
2040
  zoom?: boolean;
2038
2041
  maxSpan?: number;
2039
- style?: {
2042
+ style?: any | {
2040
2043
  top?: string;
2041
2044
  bottom?: string;
2042
2045
  left?: string;
@@ -2181,7 +2184,7 @@ declare class LocationBar extends BaseControl {
2181
2184
  latDecimal?: number;
2182
2185
  crs?: string | CRS | boolean;
2183
2186
  crsDecimal?: number;
2184
- style?: {
2187
+ style?: any | {
2185
2188
  top?: string;
2186
2189
  bottom?: string;
2187
2190
  left?: string;
@@ -2363,7 +2366,7 @@ declare class OverviewMap extends BaseControl {
2363
2366
  scene?: Map.sceneOptions;
2364
2367
  control?: Map.controlOptions;
2365
2368
  rectangle?: RectangleEntity.StyleOptions | any;
2366
- style?: {
2369
+ style?: any | {
2367
2370
  top?: string;
2368
2371
  bottom?: string;
2369
2372
  left?: string;
@@ -2514,7 +2517,7 @@ declare class BaseClass {
2514
2517
  /**
2515
2518
  * 解除绑定指定类型事件监听器
2516
2519
  * @param [types] - 事件类型,未传值时解绑所有事件
2517
- * @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件
2520
+ * @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件,特殊说明:map.on监听的Cesium相关原生事件时必须传入该参数
2518
2521
  * @param [context] - 侦听器的上下文(this关键字将指向的对象)。
2519
2522
  * @returns 当前对象本身,可以链式调用
2520
2523
  */
@@ -3830,6 +3833,38 @@ declare class BaseGraphic extends BaseClass {
3830
3833
  * 显示隐藏状态
3831
3834
  */
3832
3835
  show: boolean;
3836
+ /**
3837
+ * 指定时间范围内显示该对象 [提示:仅部分子类实现,非所有对象都支持]
3838
+ * @example
3839
+ * // cesium原生写法,单个
3840
+ * graphic.availability = new Cesium.TimeInterval({
3841
+ * start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
3842
+ * stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
3843
+ * isStartIncluded: true,
3844
+ * isStopIncluded: false
3845
+ * })
3846
+ *
3847
+ * // cesium原生写法, 多个
3848
+ * graphic.availability = new Cesium.TimeIntervalCollection([
3849
+ * new Cesium.TimeInterval({
3850
+ * start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
3851
+ * stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
3852
+ * isStartIncluded: true,
3853
+ * isStopIncluded: false
3854
+ * }),
3855
+ *
3856
+ * ])
3857
+ *
3858
+ * // 普通传值方式,多个
3859
+ * graphic.availability = [
3860
+ * { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
3861
+ * { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
3862
+ * ]
3863
+ *
3864
+ * // 普通传值方式,单个
3865
+ * graphic.availability = { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false }
3866
+ */
3867
+ availability: Cesium.TimeIntervalCollection;
3833
3868
  /**
3834
3869
  * 名称
3835
3870
  */
@@ -4219,7 +4254,7 @@ declare class BaseCombine extends BasePrimitive {
4219
4254
  /**
4220
4255
  * 更新颜色, 只对纯色材质有效,其他材质无法单独更新,需要setStle方法调用(全部更新渲染)。
4221
4256
  * @param style - 样式信息
4222
- * @param [style.color = "#3388ff"] - 颜色
4257
+ * @param [style.color = "#ffffff"] - 颜色
4223
4258
  * @param [style.opacity = 1.0] - 透明度,取值范围:0.0-1.0
4224
4259
  * @param [index] - 更新的instances对象index值,为空时更新所有对象。
4225
4260
  * @returns 空
@@ -4260,6 +4295,7 @@ declare class BaseCombine extends BasePrimitive {
4260
4295
  * @param [options.id = createGuid()] - 矢量数据id标识
4261
4296
  * @param [options.name = ''] - 矢量数据名称
4262
4297
  * @param [options.show = true] - 矢量数据是否显示
4298
+ * @param [options.availability] - 指定时间范围内显示该对象
4263
4299
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4264
4300
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4265
4301
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4296,6 +4332,7 @@ declare class BasePointCombine extends BasePolyCombine {
4296
4332
  id?: string | number;
4297
4333
  name?: string;
4298
4334
  show?: boolean;
4335
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4299
4336
  eventParent?: BaseClass | boolean;
4300
4337
  allowDrillPick?: boolean | ((...params: any[]) => any);
4301
4338
  flyTo?: boolean;
@@ -4340,6 +4377,7 @@ declare class BasePointCombine extends BasePolyCombine {
4340
4377
  * @param [options.id = createGuid()] - 矢量数据id标识
4341
4378
  * @param [options.name = ''] - 矢量数据名称
4342
4379
  * @param [options.show = true] - 矢量数据是否显示
4380
+ * @param [options.availability] - 指定时间范围内显示该对象
4343
4381
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4344
4382
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4345
4383
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4376,6 +4414,7 @@ declare class BasePolyCombine extends BaseCombine {
4376
4414
  id?: string | number;
4377
4415
  name?: string;
4378
4416
  show?: boolean;
4417
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4379
4418
  eventParent?: BaseClass | boolean;
4380
4419
  allowDrillPick?: boolean | ((...params: any[]) => any);
4381
4420
  flyTo?: boolean;
@@ -4437,6 +4476,7 @@ declare class BasePolyCombine extends BaseCombine {
4437
4476
  * @param [options.id = createGuid()] - 矢量数据id标识
4438
4477
  * @param [options.name = ''] - 矢量数据名称
4439
4478
  * @param [options.show = true] - 矢量数据是否显示
4479
+ * @param [options.availability] - 指定时间范围内显示该对象
4440
4480
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4441
4481
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4442
4482
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4473,6 +4513,7 @@ declare class BoxCombine extends BasePointCombine {
4473
4513
  id?: string | number;
4474
4514
  name?: string;
4475
4515
  show?: boolean;
4516
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4476
4517
  eventParent?: BaseClass | boolean;
4477
4518
  allowDrillPick?: boolean | ((...params: any[]) => any);
4478
4519
  flyTo?: boolean;
@@ -4510,6 +4551,7 @@ declare class BoxCombine extends BasePointCombine {
4510
4551
  * @param [options.id = createGuid()] - 矢量数据id标识
4511
4552
  * @param [options.name = ''] - 矢量数据名称
4512
4553
  * @param [options.show = true] - 矢量数据是否显示
4554
+ * @param [options.availability] - 指定时间范围内显示该对象
4513
4555
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4514
4556
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4515
4557
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4546,6 +4588,7 @@ declare class CircleCombine extends BasePointCombine {
4546
4588
  id?: string | number;
4547
4589
  name?: string;
4548
4590
  show?: boolean;
4591
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4549
4592
  eventParent?: BaseClass | boolean;
4550
4593
  allowDrillPick?: boolean | ((...params: any[]) => any);
4551
4594
  flyTo?: boolean;
@@ -4583,6 +4626,7 @@ declare class CircleCombine extends BasePointCombine {
4583
4626
  * @param [options.id = createGuid()] - 矢量数据id标识
4584
4627
  * @param [options.name = ''] - 矢量数据名称
4585
4628
  * @param [options.show = true] - 矢量数据是否显示
4629
+ * @param [options.availability] - 指定时间范围内显示该对象
4586
4630
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4587
4631
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4588
4632
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4619,6 +4663,7 @@ declare class CorridorCombine extends BasePolyCombine {
4619
4663
  id?: string | number;
4620
4664
  name?: string;
4621
4665
  show?: boolean;
4666
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4622
4667
  eventParent?: BaseClass | boolean;
4623
4668
  allowDrillPick?: boolean | ((...params: any[]) => any);
4624
4669
  flyTo?: boolean;
@@ -4656,6 +4701,7 @@ declare class CorridorCombine extends BasePolyCombine {
4656
4701
  * @param [options.id = createGuid()] - 矢量数据id标识
4657
4702
  * @param [options.name = ''] - 矢量数据名称
4658
4703
  * @param [options.show = true] - 矢量数据是否显示
4704
+ * @param [options.availability] - 指定时间范围内显示该对象
4659
4705
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4660
4706
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4661
4707
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4692,6 +4738,7 @@ declare class CylinderCombine extends BasePointCombine {
4692
4738
  id?: string | number;
4693
4739
  name?: string;
4694
4740
  show?: boolean;
4741
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4695
4742
  eventParent?: BaseClass | boolean;
4696
4743
  allowDrillPick?: boolean | ((...params: any[]) => any);
4697
4744
  flyTo?: boolean;
@@ -4729,6 +4776,7 @@ declare class CylinderCombine extends BasePointCombine {
4729
4776
  * @param [options.id = createGuid()] - 矢量数据id标识
4730
4777
  * @param [options.name = ''] - 矢量数据名称
4731
4778
  * @param [options.show = true] - 矢量数据是否显示
4779
+ * @param [options.availability] - 指定时间范围内显示该对象
4732
4780
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4733
4781
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4734
4782
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4765,6 +4813,7 @@ declare class EllipsoidCombine extends BasePointCombine {
4765
4813
  id?: string | number;
4766
4814
  name?: string;
4767
4815
  show?: boolean;
4816
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4768
4817
  eventParent?: BaseClass | boolean;
4769
4818
  allowDrillPick?: boolean | ((...params: any[]) => any);
4770
4819
  flyTo?: boolean;
@@ -4802,6 +4851,7 @@ declare namespace FlatBillboard {
4802
4851
  * @param [options.id = createGuid()] - 矢量数据id标识
4803
4852
  * @param [options.name = ''] - 矢量数据名称
4804
4853
  * @param [options.show = true] - 矢量数据是否显示
4854
+ * @param [options.availability] - 指定时间范围内显示该对象
4805
4855
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4806
4856
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4807
4857
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4821,6 +4871,7 @@ declare class FlatBillboard extends BaseCombine {
4821
4871
  id?: string | number;
4822
4872
  name?: string;
4823
4873
  show?: boolean;
4874
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4824
4875
  eventParent?: BaseClass | boolean;
4825
4876
  allowDrillPick?: boolean | ((...params: any[]) => any);
4826
4877
  flyTo?: boolean;
@@ -4879,6 +4930,7 @@ declare class FlatBillboard extends BaseCombine {
4879
4930
  * @param [options.id = createGuid()] - 矢量数据id标识
4880
4931
  * @param [options.name = ''] - 矢量数据名称
4881
4932
  * @param [options.show = true] - 矢量数据是否显示
4933
+ * @param [options.availability] - 指定时间范围内显示该对象
4882
4934
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4883
4935
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4884
4936
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4915,6 +4967,7 @@ declare class FrustumCombine extends BasePointCombine {
4915
4967
  id?: string | number;
4916
4968
  name?: string;
4917
4969
  show?: boolean;
4970
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4918
4971
  eventParent?: BaseClass | boolean;
4919
4972
  allowDrillPick?: boolean | ((...params: any[]) => any);
4920
4973
  flyTo?: boolean;
@@ -4952,6 +5005,7 @@ declare class FrustumCombine extends BasePointCombine {
4952
5005
  * @param [options.id = createGuid()] - 矢量数据id标识
4953
5006
  * @param [options.name = ''] - 矢量数据名称
4954
5007
  * @param [options.show = true] - 矢量数据是否显示
5008
+ * @param [options.availability] - 指定时间范围内显示该对象
4955
5009
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
4956
5010
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
4957
5011
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -4988,6 +5042,7 @@ declare class PlaneCombine extends BasePointCombine {
4988
5042
  id?: string | number;
4989
5043
  name?: string;
4990
5044
  show?: boolean;
5045
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
4991
5046
  eventParent?: BaseClass | boolean;
4992
5047
  allowDrillPick?: boolean | ((...params: any[]) => any);
4993
5048
  flyTo?: boolean;
@@ -5025,6 +5080,7 @@ declare class PlaneCombine extends BasePointCombine {
5025
5080
  * @param [options.id = createGuid()] - 矢量数据id标识
5026
5081
  * @param [options.name = ''] - 矢量数据名称
5027
5082
  * @param [options.show = true] - 矢量数据是否显示
5083
+ * @param [options.availability] - 指定时间范围内显示该对象
5028
5084
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5029
5085
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5030
5086
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -5059,6 +5115,7 @@ declare class PolygonCombine extends BasePolyCombine {
5059
5115
  id?: string | number;
5060
5116
  name?: string;
5061
5117
  show?: boolean;
5118
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
5062
5119
  eventParent?: BaseClass | boolean;
5063
5120
  allowDrillPick?: boolean | ((...params: any[]) => any);
5064
5121
  flyTo?: boolean;
@@ -5096,6 +5153,7 @@ declare class PolygonCombine extends BasePolyCombine {
5096
5153
  * @param [options.id = createGuid()] - 矢量数据id标识
5097
5154
  * @param [options.name = ''] - 矢量数据名称
5098
5155
  * @param [options.show = true] - 矢量数据是否显示
5156
+ * @param [options.availability] - 指定时间范围内显示该对象
5099
5157
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5100
5158
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5101
5159
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -5132,6 +5190,7 @@ declare class PolylineCombine extends BasePolyCombine {
5132
5190
  id?: string | number;
5133
5191
  name?: string;
5134
5192
  show?: boolean;
5193
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
5135
5194
  eventParent?: BaseClass | boolean;
5136
5195
  allowDrillPick?: boolean | ((...params: any[]) => any);
5137
5196
  flyTo?: boolean;
@@ -5169,6 +5228,7 @@ declare class PolylineCombine extends BasePolyCombine {
5169
5228
  * @param [options.id = createGuid()] - 矢量数据id标识
5170
5229
  * @param [options.name = ''] - 矢量数据名称
5171
5230
  * @param [options.show = true] - 矢量数据是否显示
5231
+ * @param [options.availability] - 指定时间范围内显示该对象
5172
5232
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5173
5233
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5174
5234
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -5205,6 +5265,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
5205
5265
  id?: string | number;
5206
5266
  name?: string;
5207
5267
  show?: boolean;
5268
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
5208
5269
  eventParent?: BaseClass | boolean;
5209
5270
  allowDrillPick?: boolean | ((...params: any[]) => any);
5210
5271
  flyTo?: boolean;
@@ -5242,6 +5303,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
5242
5303
  * @param [options.id = createGuid()] - 矢量数据id标识
5243
5304
  * @param [options.name = ''] - 矢量数据名称
5244
5305
  * @param [options.show = true] - 矢量数据是否显示
5306
+ * @param [options.availability] - 指定时间范围内显示该对象
5245
5307
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5246
5308
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5247
5309
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -5278,6 +5340,7 @@ declare class RectangleCombine extends BasePolyCombine {
5278
5340
  id?: string | number;
5279
5341
  name?: string;
5280
5342
  show?: boolean;
5343
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
5281
5344
  eventParent?: BaseClass | boolean;
5282
5345
  allowDrillPick?: boolean | ((...params: any[]) => any);
5283
5346
  flyTo?: boolean;
@@ -5315,6 +5378,7 @@ declare class RectangleCombine extends BasePolyCombine {
5315
5378
  * @param [options.id = createGuid()] - 矢量数据id标识
5316
5379
  * @param [options.name = ''] - 矢量数据名称
5317
5380
  * @param [options.show = true] - 矢量数据是否显示
5381
+ * @param [options.availability] - 指定时间范围内显示该对象
5318
5382
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5319
5383
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5320
5384
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -5351,6 +5415,7 @@ declare class WallCombine extends BasePolyCombine {
5351
5415
  id?: string | number;
5352
5416
  name?: string;
5353
5417
  show?: boolean;
5418
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
5354
5419
  eventParent?: BaseClass | boolean;
5355
5420
  allowDrillPick?: boolean | ((...params: any[]) => any);
5356
5421
  flyTo?: boolean;
@@ -5386,6 +5451,7 @@ declare class WallCombine extends BasePolyCombine {
5386
5451
  * @param [options.id = createGuid()] - 矢量数据id标识
5387
5452
  * @param [options.name = ''] - 矢量数据名称
5388
5453
  * @param [options.show = true] - 矢量数据是否显示
5454
+ * @param [options.availability] - 指定时间范围内显示该对象
5389
5455
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
5390
5456
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
5391
5457
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -5419,6 +5485,7 @@ declare class WaterCombine extends PolygonCombine {
5419
5485
  id?: string | number;
5420
5486
  name?: string;
5421
5487
  show?: boolean;
5488
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
5422
5489
  eventParent?: BaseClass | boolean;
5423
5490
  allowDrillPick?: boolean | ((...params: any[]) => any);
5424
5491
  flyTo?: boolean;
@@ -5587,6 +5654,16 @@ declare class ConeVisibility extends PointVisibility {
5587
5654
  * @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
5588
5655
  * // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
5589
5656
  * // * @param {number} [options.wall.surface] 设置墙底部高度是否贴地
5657
+ * @param [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
5658
+ * @param [highlight.label] - 使用 文本 对象,及其对应的样式
5659
+ * @param [highlight.billboard] - 使用 图标 对象,及其对应的样式
5660
+ * @param [highlight.point] - 使用 图标 对象,及其对应的样式
5661
+ * @param [highlight.model] - 使用 gltf模型 对象,及其对应的样式
5662
+ * @param [highlight.circle] - 使用 圆 对象,及其对应的样式
5663
+ * @param [highlight.coneTrack] - 使用 圆锥体 对象,及其对应的样式
5664
+ * @param [highlight.path] - 使用 path轨迹 对象,及其对应的样式
5665
+ * @param [highlight.polyline] - 使用 polyline路线 对象,及其对应的样式
5666
+ * @param [highlight.wall] - 使用 墙体 对象,及其对应的样式
5590
5667
  * @param [options.orientation] - 自定义实体方向, 默认内部根据轨迹自动的
5591
5668
  * @param [options.fixedFrameTransform = Cesium.Transforms.eastNorthUpToFixedFrame] - 参考系
5592
5669
  * @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
@@ -5687,6 +5764,16 @@ declare class FixedRoute extends Route {
5687
5764
  allowDrillPick?: boolean | ((...params: any[]) => any);
5688
5765
  flyTo?: boolean;
5689
5766
  flyToOptions?: any;
5767
+ }, highlight?: {
5768
+ label?: LabelPrimitive.StyleOptions | any;
5769
+ billboard?: BillboardEntity.StyleOptions | any;
5770
+ point?: PointPrimitive.StyleOptions | any;
5771
+ model?: ModelPrimitive.StyleOptions | any;
5772
+ circle?: CircleEntity.StyleOptions | any;
5773
+ coneTrack?: ConeTrack.StyleOptions | any;
5774
+ path?: PathEntity.StyleOptions | any;
5775
+ polyline?: PolylineEntity.StyleOptions | any;
5776
+ wall?: WallEntity.StyleOptions | any;
5690
5777
  });
5691
5778
  /**
5692
5779
  * 开始时间
@@ -6093,6 +6180,16 @@ declare namespace Route {
6093
6180
  * @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
6094
6181
  * // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
6095
6182
  * // * @param {number} [options.wall.surface] 设置墙底部高度是否贴地
6183
+ * @param [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
6184
+ * @param [highlight.label] - 使用 文本 对象,及其对应的样式
6185
+ * @param [highlight.billboard] - 使用 图标 对象,及其对应的样式
6186
+ * @param [highlight.point] - 使用 图标 对象,及其对应的样式
6187
+ * @param [highlight.model] - 使用 gltf模型 对象,及其对应的样式
6188
+ * @param [highlight.circle] - 使用 圆 对象,及其对应的样式
6189
+ * @param [highlight.coneTrack] - 使用 圆锥体 对象,及其对应的样式
6190
+ * @param [highlight.path] - 使用 path轨迹 对象,及其对应的样式
6191
+ * @param [highlight.polyline] - 使用 polyline路线 对象,及其对应的样式
6192
+ * @param [highlight.wall] - 使用 墙体 对象,及其对应的样式
6096
6193
  * @param [options.orientation] - 自定义实体方向, 默认内部根据轨迹自动的
6097
6194
  * @param [options.fixedFrameTransform = Cesium.Transforms.eastNorthUpToFixedFrame] - 参考系
6098
6195
  * @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
@@ -6180,6 +6277,16 @@ declare class Route extends BasePointPrimitive {
6180
6277
  allowDrillPick?: boolean | ((...params: any[]) => any);
6181
6278
  flyTo?: boolean;
6182
6279
  flyToOptions?: any;
6280
+ }, highlight?: {
6281
+ label?: LabelPrimitive.StyleOptions | any;
6282
+ billboard?: BillboardEntity.StyleOptions | any;
6283
+ point?: PointPrimitive.StyleOptions | any;
6284
+ model?: ModelPrimitive.StyleOptions | any;
6285
+ circle?: CircleEntity.StyleOptions | any;
6286
+ coneTrack?: ConeTrack.StyleOptions | any;
6287
+ path?: PathEntity.StyleOptions | any;
6288
+ polyline?: PolylineEntity.StyleOptions | any;
6289
+ wall?: WallEntity.StyleOptions | any;
6183
6290
  });
6184
6291
  /**
6185
6292
  * 时序动态坐标对象
@@ -6979,6 +7086,7 @@ declare namespace DivBoderLabel {
6979
7086
  * @param [options.id = createGuid()] - 矢量数据id标识
6980
7087
  * @param [options.name = ''] - 矢量数据名称
6981
7088
  * @param [options.show = true] - 矢量数据是否显示
7089
+ * @param [options.availability] - 指定时间范围内显示该对象
6982
7090
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
6983
7091
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
6984
7092
  * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
@@ -7004,6 +7112,7 @@ declare class DivBoderLabel extends DivGraphic {
7004
7112
  id?: string | number;
7005
7113
  name?: string;
7006
7114
  show?: boolean;
7115
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7007
7116
  eventParent?: BaseClass | boolean;
7008
7117
  flyTo?: boolean;
7009
7118
  flyToOptions?: any;
@@ -7096,6 +7205,7 @@ declare namespace DivGraphic {
7096
7205
  * @param [options.id = createGuid()] - 矢量数据id标识
7097
7206
  * @param [options.name = ''] - 矢量数据名称
7098
7207
  * @param [options.show = true] - 矢量数据是否显示
7208
+ * @param [options.availability] - 指定时间范围内显示该对象
7099
7209
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7100
7210
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7101
7211
  * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
@@ -7129,6 +7239,7 @@ declare class DivGraphic extends BaseGraphic {
7129
7239
  id?: string | number;
7130
7240
  name?: string;
7131
7241
  show?: boolean;
7242
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7132
7243
  eventParent?: BaseClass | boolean;
7133
7244
  flyTo?: boolean;
7134
7245
  flyToOptions?: any;
@@ -7373,6 +7484,7 @@ declare namespace DivLightPoint {
7373
7484
  * @param [options.id = createGuid()] - 矢量数据id标识
7374
7485
  * @param [options.name = ''] - 矢量数据名称
7375
7486
  * @param [options.show = true] - 矢量数据是否显示
7487
+ * @param [options.availability] - 指定时间范围内显示该对象
7376
7488
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7377
7489
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7378
7490
  * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
@@ -7398,6 +7510,7 @@ declare class DivLightPoint extends DivGraphic {
7398
7510
  id?: string | number;
7399
7511
  name?: string;
7400
7512
  show?: boolean;
7513
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7401
7514
  eventParent?: BaseClass | boolean;
7402
7515
  flyTo?: boolean;
7403
7516
  flyToOptions?: any;
@@ -7486,6 +7599,7 @@ declare namespace DivUpLabel {
7486
7599
  * @param [options.id = createGuid()] - 矢量数据id标识
7487
7600
  * @param [options.name = ''] - 矢量数据名称
7488
7601
  * @param [options.show = true] - 矢量数据是否显示
7602
+ * @param [options.availability] - 指定时间范围内显示该对象
7489
7603
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
7490
7604
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
7491
7605
  * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
@@ -7511,6 +7625,7 @@ declare class DivUpLabel extends DivGraphic {
7511
7625
  id?: string | number;
7512
7626
  name?: string;
7513
7627
  show?: boolean;
7628
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7514
7629
  eventParent?: BaseClass | boolean;
7515
7630
  flyTo?: boolean;
7516
7631
  flyToOptions?: any;
@@ -7638,6 +7753,7 @@ declare namespace Popup {
7638
7753
  * @param [options.id = createGuid()] - 矢量数据id标识
7639
7754
  * @param [options.name = ''] - 矢量数据名称
7640
7755
  * @param [options.show = true] - 矢量数据是否显示
7756
+ * @param [options.availability] - 指定时间范围内显示该对象
7641
7757
  */
7642
7758
  declare class Popup extends DivGraphic {
7643
7759
  constructor(options: {
@@ -7656,6 +7772,7 @@ declare class Popup extends DivGraphic {
7656
7772
  id?: string | number;
7657
7773
  name?: string;
7658
7774
  show?: boolean;
7775
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7659
7776
  });
7660
7777
  /**
7661
7778
  * 关联的触发对象
@@ -7742,6 +7859,7 @@ declare namespace Tooltip {
7742
7859
  * @param [options.id = createGuid()] - 矢量数据id标识
7743
7860
  * @param [options.name = ''] - 矢量数据名称
7744
7861
  * @param [options.show = true] - 矢量数据是否显示
7862
+ * @param [options.availability] - 指定时间范围内显示该对象
7745
7863
  */
7746
7864
  declare class Tooltip extends Popup {
7747
7865
  constructor(options: {
@@ -7757,6 +7875,7 @@ declare class Tooltip extends Popup {
7757
7875
  id?: string | number;
7758
7876
  name?: string;
7759
7877
  show?: boolean;
7878
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7760
7879
  });
7761
7880
  }
7762
7881
 
@@ -7767,7 +7886,7 @@ declare class Tooltip extends Popup {
7767
7886
  * @param options.positions - 【线面状(多点)】矢量数据时的坐标位置,具体看子类实现
7768
7887
  * @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
7769
7888
  * @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性
7770
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
7889
+ * @param [options.availability] - 指定时间范围内显示该对象
7771
7890
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
7772
7891
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
7773
7892
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -7791,7 +7910,7 @@ declare class BaseEntity extends BaseGraphic {
7791
7910
  positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
7792
7911
  style: any;
7793
7912
  attr?: any;
7794
- availability?: Cesium.TimeIntervalCollection;
7913
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7795
7914
  description?: Cesium.Property | string;
7796
7915
  viewFrom?: Cesium.Property;
7797
7916
  parent?: Cesium.Entity;
@@ -7829,14 +7948,6 @@ declare class BaseEntity extends BaseGraphic {
7829
7948
  * 是否正在编辑状态
7830
7949
  */
7831
7950
  readonly isEditing: boolean;
7832
- /**
7833
- * 与该对象关联的可用性,可以控制在某些时间段内展示对象
7834
- * @example
7835
- * const startTime = Cesium.JulianDate.addSeconds(map.clock.currentTime, 5, new Cesium.JulianDate())
7836
- * const stopTime = Cesium.JulianDate.addSeconds(map.clock.currentTime, 15, new Cesium.JulianDate())
7837
- * graphic.availability = new Cesium.TimeIntervalCollection([new Cesium.TimeInterval({ start: startTime, stop: stopTime })])
7838
- */
7839
- availability: Cesium.TimeIntervalCollection;
7840
7951
  /**
7841
7952
  * 重新渲染对象
7842
7953
  * @returns 无
@@ -7929,7 +8040,7 @@ declare class BaseEntity extends BaseGraphic {
7929
8040
  * @param [options.orientation] - 指定实体方向的属性。
7930
8041
  * @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
7931
8042
  * @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
7932
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
8043
+ * @param [options.availability] - 指定时间范围内显示该对象
7933
8044
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
7934
8045
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
7935
8046
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -7965,7 +8076,7 @@ declare class BasePointEntity extends BaseEntity {
7965
8076
  orientation?: Cesium.Property;
7966
8077
  style: any;
7967
8078
  attr?: any;
7968
- availability?: Cesium.TimeIntervalCollection;
8079
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
7969
8080
  description?: Cesium.Property | string;
7970
8081
  viewFrom?: Cesium.Property;
7971
8082
  parent?: Cesium.Entity;
@@ -8111,7 +8222,7 @@ declare class BasePointEntity extends BaseEntity {
8111
8222
  * @param options.positions - 坐标位置
8112
8223
  * @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
8113
8224
  * @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
8114
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
8225
+ * @param [options.availability] - 指定时间范围内显示该对象
8115
8226
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
8116
8227
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
8117
8228
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -8142,7 +8253,7 @@ declare class BasePolyEntity extends BaseEntity {
8142
8253
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
8143
8254
  style: any;
8144
8255
  attr?: any;
8145
- availability?: Cesium.TimeIntervalCollection;
8256
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
8146
8257
  description?: Cesium.Property | string;
8147
8258
  viewFrom?: Cesium.Property;
8148
8259
  parent?: Cesium.Entity;
@@ -8340,7 +8451,7 @@ declare namespace BillboardEntity {
8340
8451
  * @param options.position - 坐标位置
8341
8452
  * @param options.style - 样式信息
8342
8453
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
8343
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
8454
+ * @param [options.availability] - 指定时间范围内显示该对象
8344
8455
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
8345
8456
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
8346
8457
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -8376,7 +8487,7 @@ declare class BillboardEntity extends BasePointEntity {
8376
8487
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
8377
8488
  style: BillboardEntity.StyleOptions | any;
8378
8489
  attr?: any;
8379
- availability?: Cesium.TimeIntervalCollection;
8490
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
8380
8491
  description?: Cesium.Property | string;
8381
8492
  viewFrom?: Cesium.Property;
8382
8493
  parent?: Cesium.Entity;
@@ -8514,7 +8625,7 @@ declare namespace BoxEntity {
8514
8625
  * @param options.style - 样式信息
8515
8626
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
8516
8627
  * @param [options.orientation] - 实体方向
8517
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
8628
+ * @param [options.availability] - 指定时间范围内显示该对象
8518
8629
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
8519
8630
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
8520
8631
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -8541,7 +8652,7 @@ declare class BoxEntity {
8541
8652
  style: BoxEntity.StyleOptions | any;
8542
8653
  attr?: any;
8543
8654
  orientation?: Cesium.Property;
8544
- availability?: Cesium.TimeIntervalCollection;
8655
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
8545
8656
  description?: Cesium.Property | string;
8546
8657
  viewFrom?: Cesium.Property;
8547
8658
  parent?: Cesium.Entity;
@@ -8668,7 +8779,7 @@ declare namespace CanvasLabelEntity {
8668
8779
  * @param options.position - 坐标位置
8669
8780
  * @param options.style - 样式信息
8670
8781
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
8671
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
8782
+ * @param [options.availability] - 指定时间范围内显示该对象
8672
8783
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
8673
8784
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
8674
8785
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -8694,7 +8805,7 @@ declare class CanvasLabelEntity {
8694
8805
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
8695
8806
  style: CanvasLabelEntity.StyleOptions | any;
8696
8807
  attr?: any;
8697
- availability?: Cesium.TimeIntervalCollection;
8808
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
8698
8809
  description?: Cesium.Property | string;
8699
8810
  viewFrom?: Cesium.Property;
8700
8811
  parent?: Cesium.Entity;
@@ -8730,7 +8841,7 @@ declare namespace CircleEntity {
8730
8841
  * @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
8731
8842
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
8732
8843
  * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`material材质参数`将被覆盖。
8733
- * @property [color = "#3388ff"] - 填充颜色
8844
+ * @property [color = "#ffffff"] - 填充颜色
8734
8845
  * @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
8735
8846
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
8736
8847
  * @property [outline = false] - 是否边框
@@ -8801,7 +8912,7 @@ declare namespace CircleEntity {
8801
8912
  * @param options.position - 坐标位置
8802
8913
  * @param options.style - 样式信息
8803
8914
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
8804
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
8915
+ * @param [options.availability] - 指定时间范围内显示该对象
8805
8916
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
8806
8917
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
8807
8918
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -8830,7 +8941,7 @@ declare class CircleEntity extends BasePointEntity {
8830
8941
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
8831
8942
  style: CircleEntity.StyleOptions | any;
8832
8943
  attr?: any;
8833
- availability?: Cesium.TimeIntervalCollection;
8944
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
8834
8945
  description?: Cesium.Property | string;
8835
8946
  viewFrom?: Cesium.Property;
8836
8947
  parent?: Cesium.Entity;
@@ -9041,7 +9152,7 @@ declare namespace ConeTrack {
9041
9152
  * @param [options.targetPosition] - 追踪的目标位置
9042
9153
  * @param options.style - 样式信息
9043
9154
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
9044
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
9155
+ * @param [options.availability] - 指定时间范围内显示该对象
9045
9156
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
9046
9157
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
9047
9158
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -9065,7 +9176,7 @@ declare class ConeTrack extends CylinderEntity {
9065
9176
  targetPosition?: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
9066
9177
  style: ConeTrack.StyleOptions | any;
9067
9178
  attr?: any;
9068
- availability?: Cesium.TimeIntervalCollection;
9179
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
9069
9180
  description?: Cesium.Property | string;
9070
9181
  viewFrom?: Cesium.Property;
9071
9182
  parent?: Cesium.Entity;
@@ -9142,7 +9253,7 @@ declare namespace CorridorEntity {
9142
9253
  * @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
9143
9254
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
9144
9255
  * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
9145
- * @property [color = "#3388ff"] - 颜色
9256
+ * @property [color = "#ffffff"] - 颜色
9146
9257
  * @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
9147
9258
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
9148
9259
  * @property [outline = false] - 是否边框
@@ -9204,7 +9315,7 @@ declare namespace CorridorEntity {
9204
9315
  * @param options.positions - 坐标位置
9205
9316
  * @param options.style - 样式信息
9206
9317
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
9207
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
9318
+ * @param [options.availability] - 指定时间范围内显示该对象
9208
9319
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
9209
9320
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
9210
9321
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -9234,7 +9345,7 @@ declare class CorridorEntity extends BasePolyEntity {
9234
9345
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
9235
9346
  style: CorridorEntity.StyleOptions | any;
9236
9347
  attr?: any;
9237
- availability?: Cesium.TimeIntervalCollection;
9348
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
9238
9349
  description?: Cesium.Property | string;
9239
9350
  viewFrom?: Cesium.Property;
9240
9351
  parent?: Cesium.Entity;
@@ -9277,7 +9388,7 @@ declare class CorridorEntity extends BasePolyEntity {
9277
9388
  * // * @param {number} [options.style.sharpness=0.85] 曲线的弯曲程度
9278
9389
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
9279
9390
  * @param [options.getShowPositions] - 自定义计算曲线点回调方法,可以在方法内自定义计算算法。
9280
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
9391
+ * @param [options.availability] - 指定时间范围内显示该对象
9281
9392
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
9282
9393
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
9283
9394
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -9308,7 +9419,7 @@ declare class CurveEntity extends PolylineEntity {
9308
9419
  style: PolylineEntity.StyleOptions | any;
9309
9420
  attr?: any;
9310
9421
  getShowPositions?: (...params: any[]) => any;
9311
- availability?: Cesium.TimeIntervalCollection;
9422
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
9312
9423
  description?: Cesium.Property | string;
9313
9424
  viewFrom?: Cesium.Property;
9314
9425
  parent?: Cesium.Entity;
@@ -9406,7 +9517,7 @@ declare namespace CylinderEntity {
9406
9517
  * @param options.style - 样式信息
9407
9518
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
9408
9519
  * @param [options.orientation] - 实体方向
9409
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
9520
+ * @param [options.availability] - 指定时间范围内显示该对象
9410
9521
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
9411
9522
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
9412
9523
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -9432,7 +9543,7 @@ declare class CylinderEntity extends BasePointEntity {
9432
9543
  style: CylinderEntity.StyleOptions | any;
9433
9544
  attr?: any;
9434
9545
  orientation?: Cesium.Property;
9435
- availability?: Cesium.TimeIntervalCollection;
9546
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
9436
9547
  description?: Cesium.Property | string;
9437
9548
  viewFrom?: Cesium.Property;
9438
9549
  parent?: Cesium.Entity;
@@ -9553,7 +9664,7 @@ declare namespace DivBillboardEntity {
9553
9664
  * @param options.position - 坐标位置
9554
9665
  * @param options.style - 样式信息
9555
9666
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
9556
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
9667
+ * @param [options.availability] - 指定时间范围内显示该对象
9557
9668
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
9558
9669
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
9559
9670
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -9579,7 +9690,7 @@ declare class DivBillboardEntity extends BillboardEntity {
9579
9690
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
9580
9691
  style: DivBillboardEntity.StyleOptions | any;
9581
9692
  attr?: any;
9582
- availability?: Cesium.TimeIntervalCollection;
9693
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
9583
9694
  description?: Cesium.Property | string;
9584
9695
  viewFrom?: Cesium.Property;
9585
9696
  parent?: Cesium.Entity;
@@ -9768,7 +9879,7 @@ declare namespace EllipseEntity {
9768
9879
  * @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
9769
9880
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
9770
9881
  * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
9771
- * @property [color = "#3388ff"] - 填充颜色
9882
+ * @property [color = "#ffffff"] - 填充颜色
9772
9883
  * @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
9773
9884
  * @property [outline = false] - 是否边框
9774
9885
  * @property [outlineWidth = 1] - 边框宽度
@@ -9838,7 +9949,7 @@ declare namespace EllipseEntity {
9838
9949
  * @param options.position - 坐标位置
9839
9950
  * @param options.style - 样式信息
9840
9951
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
9841
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
9952
+ * @param [options.availability] - 指定时间范围内显示该对象
9842
9953
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
9843
9954
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
9844
9955
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -9864,7 +9975,7 @@ declare class EllipseEntity extends CircleEntity {
9864
9975
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
9865
9976
  style: EllipseEntity.StyleOptions | any;
9866
9977
  attr?: any;
9867
- availability?: Cesium.TimeIntervalCollection;
9978
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
9868
9979
  description?: Cesium.Property | string;
9869
9980
  viewFrom?: Cesium.Property;
9870
9981
  parent?: Cesium.Entity;
@@ -10005,7 +10116,7 @@ declare namespace EllipsoidEntity {
10005
10116
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10006
10117
  * @param [options.orientation] - 实体方向
10007
10118
  * @param [options.scanPlane] - 动态扫描面
10008
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
10119
+ * @param [options.availability] - 指定时间范围内显示该对象
10009
10120
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10010
10121
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10011
10122
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -10035,7 +10146,7 @@ declare class EllipsoidEntity extends BasePointEntity {
10035
10146
  attr?: any;
10036
10147
  orientation?: Cesium.Property;
10037
10148
  scanPlane?: EllipsoidEntity.ScanPlaneOptions | EllipsoidEntity.ScanPlaneOptions[];
10038
- availability?: Cesium.TimeIntervalCollection;
10149
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
10039
10150
  description?: Cesium.Property | string;
10040
10151
  viewFrom?: Cesium.Property;
10041
10152
  parent?: Cesium.Entity;
@@ -10180,7 +10291,7 @@ declare namespace FontBillboardEntity {
10180
10291
  * @param options.position - 坐标位置
10181
10292
  * @param options.style - 样式信息
10182
10293
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10183
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
10294
+ * @param [options.availability] - 指定时间范围内显示该对象
10184
10295
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10185
10296
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10186
10297
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -10206,7 +10317,7 @@ declare class FontBillboardEntity extends BasePointEntity {
10206
10317
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
10207
10318
  style: FontBillboardEntity.StyleOptions | any;
10208
10319
  attr?: any;
10209
- availability?: Cesium.TimeIntervalCollection;
10320
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
10210
10321
  description?: Cesium.Property | string;
10211
10322
  viewFrom?: Cesium.Property;
10212
10323
  parent?: Cesium.Entity;
@@ -10327,7 +10438,7 @@ declare namespace LabelEntity {
10327
10438
  * @param options.position - 坐标位置
10328
10439
  * @param options.style - 样式信息
10329
10440
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10330
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
10441
+ * @param [options.availability] - 指定时间范围内显示该对象
10331
10442
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10332
10443
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10333
10444
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -10353,7 +10464,7 @@ declare class LabelEntity {
10353
10464
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
10354
10465
  style: LabelEntity.StyleOptions | any;
10355
10466
  attr?: any;
10356
- availability?: Cesium.TimeIntervalCollection;
10467
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
10357
10468
  description?: Cesium.Property | string;
10358
10469
  viewFrom?: Cesium.Property;
10359
10470
  parent?: Cesium.Entity;
@@ -10421,7 +10532,7 @@ declare namespace ModelEntity {
10421
10532
  * @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
10422
10533
  * @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
10423
10534
  * @property [fill = false] - 是否填充,指定与模型渲染颜色混合
10424
- * @property [color = "#3388ff"] - 颜色
10535
+ * @property [color = "#ffffff"] - 颜色
10425
10536
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
10426
10537
  * @property [colorBlendMode = ColorBlendMode.HIGHLIGHT] - 指定颜色如何与模型混合。
10427
10538
  * @property [colorBlendAmount = 0.5] - 当colorBlendMode为MIX时指定颜色强度的数字属性。0.0的值表示模型渲染的颜色,1.0的值表示纯色,任何介于两者之间的值表示两者的混合。
@@ -10505,7 +10616,7 @@ declare namespace ModelEntity {
10505
10616
  * @param options.style - 样式信息
10506
10617
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10507
10618
  * @param [options.orientation] - 实体方向
10508
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
10619
+ * @param [options.availability] - 指定时间范围内显示该对象
10509
10620
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10510
10621
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10511
10622
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -10548,7 +10659,7 @@ declare class ModelEntity extends BasePointEntity {
10548
10659
  style: ModelEntity.StyleOptions | any;
10549
10660
  attr?: any;
10550
10661
  orientation?: Cesium.Property;
10551
- availability?: Cesium.TimeIntervalCollection;
10662
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
10552
10663
  description?: Cesium.Property | string;
10553
10664
  viewFrom?: Cesium.Property;
10554
10665
  parent?: Cesium.Entity;
@@ -10739,7 +10850,7 @@ declare namespace PathEntity {
10739
10850
  * @param [options.orientation] - 实体方向
10740
10851
  * @param options.style - 样式信息
10741
10852
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10742
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
10853
+ * @param [options.availability] - 指定时间范围内显示该对象
10743
10854
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10744
10855
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10745
10856
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -10772,7 +10883,7 @@ declare class PathEntity extends BasePointEntity {
10772
10883
  orientation?: Cesium.Property;
10773
10884
  style: PathEntity.StyleOptions | any;
10774
10885
  attr?: any;
10775
- availability?: Cesium.TimeIntervalCollection;
10886
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
10776
10887
  description?: Cesium.Property | string;
10777
10888
  viewFrom?: Cesium.Property;
10778
10889
  parent?: Cesium.Entity;
@@ -10907,7 +11018,7 @@ declare namespace PitEntity {
10907
11018
  * @param options.positions - 坐标位置
10908
11019
  * @param options.style - 样式信息
10909
11020
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
10910
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11021
+ * @param [options.availability] - 指定时间范围内显示该对象
10911
11022
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
10912
11023
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
10913
11024
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -10930,7 +11041,7 @@ declare class PitEntity extends BasePolyEntity {
10930
11041
  positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
10931
11042
  style: PitEntity.StyleOptions | any;
10932
11043
  attr?: any;
10933
- availability?: Cesium.TimeIntervalCollection;
11044
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
10934
11045
  description?: Cesium.Property | string;
10935
11046
  viewFrom?: Cesium.Property;
10936
11047
  parent?: Cesium.Entity;
@@ -11029,7 +11140,7 @@ declare namespace PlaneEntity {
11029
11140
  * @param options.style - 样式信息
11030
11141
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
11031
11142
  * @param [options.orientation] - 实体方向
11032
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11143
+ * @param [options.availability] - 指定时间范围内显示该对象
11033
11144
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
11034
11145
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
11035
11146
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -11056,7 +11167,7 @@ declare class PlaneEntity {
11056
11167
  style: PlaneEntity.StyleOptions | any;
11057
11168
  attr?: any;
11058
11169
  orientation?: Cesium.Property;
11059
- availability?: Cesium.TimeIntervalCollection;
11170
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
11060
11171
  description?: Cesium.Property | string;
11061
11172
  viewFrom?: Cesium.Property;
11062
11173
  parent?: Cesium.Entity;
@@ -11091,7 +11202,7 @@ declare namespace PointEntity {
11091
11202
  /**
11092
11203
  * 像素点 支持的样式信息
11093
11204
  * @property [pixelSize = 10] - 像素大小
11094
- * @property [color = "#3388ff"] - 颜色
11205
+ * @property [color = "#ffffff"] - 颜色
11095
11206
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
11096
11207
  * @property [outline = false] - 是否边框
11097
11208
  * @property [outlineColor = "#ffffff"] - 边框颜色
@@ -11149,7 +11260,7 @@ declare namespace PointEntity {
11149
11260
  * @param options.position - 坐标位置
11150
11261
  * @param options.style - 样式信息
11151
11262
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
11152
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11263
+ * @param [options.availability] - 指定时间范围内显示该对象
11153
11264
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
11154
11265
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
11155
11266
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -11185,7 +11296,7 @@ declare class PointEntity extends BasePointEntity {
11185
11296
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
11186
11297
  style: PointEntity.StyleOptions | any;
11187
11298
  attr?: any;
11188
- availability?: Cesium.TimeIntervalCollection;
11299
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
11189
11300
  description?: Cesium.Property | string;
11190
11301
  viewFrom?: Cesium.Property;
11191
11302
  parent?: Cesium.Entity;
@@ -11229,7 +11340,7 @@ declare namespace PolygonEntity {
11229
11340
  * @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
11230
11341
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
11231
11342
  * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
11232
- * @property [color = "#3388ff"] - 颜色
11343
+ * @property [color = "#ffffff"] - 颜色
11233
11344
  * @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
11234
11345
  * @property [randomColor = false] - 是否随机颜色
11235
11346
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
@@ -11317,7 +11428,7 @@ declare namespace PolygonEntity {
11317
11428
  * @param options.positions - 坐标位置
11318
11429
  * @param options.style - 样式信息
11319
11430
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
11320
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11431
+ * @param [options.availability] - 指定时间范围内显示该对象
11321
11432
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
11322
11433
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
11323
11434
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -11348,7 +11459,7 @@ declare class PolygonEntity extends BasePolyEntity {
11348
11459
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
11349
11460
  style: PolygonEntity.StyleOptions | any;
11350
11461
  attr?: any;
11351
- availability?: Cesium.TimeIntervalCollection;
11462
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
11352
11463
  description?: Cesium.Property | string;
11353
11464
  viewFrom?: Cesium.Property;
11354
11465
  parent?: Cesium.Entity;
@@ -11446,7 +11557,7 @@ declare namespace PolylineEntity {
11446
11557
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
11447
11558
  * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
11448
11559
  * @property [width = 4] - 线宽
11449
- * @property [color = "#3388ff"] - 颜色
11560
+ * @property [color = "#ffffff"] - 颜色
11450
11561
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
11451
11562
  * @property [randomColor = false] - 是否随机颜色
11452
11563
  * @property [depthFailMaterial] - 指定当折线位于地形之下时用于绘制折线的材质。
@@ -11514,7 +11625,7 @@ declare namespace PolylineEntity {
11514
11625
  * @param options.positions - 坐标位置
11515
11626
  * @param options.style - 样式信息
11516
11627
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
11517
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11628
+ * @param [options.availability] - 指定时间范围内显示该对象
11518
11629
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
11519
11630
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
11520
11631
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -11545,7 +11656,7 @@ declare class PolylineEntity extends BasePolyEntity {
11545
11656
  positions: LngLatPoint[] | Cesium.Cartesian3[] | any[] | Cesium.PositionProperty | any;
11546
11657
  style: PolylineEntity.StyleOptions | any;
11547
11658
  attr?: any;
11548
- availability?: Cesium.TimeIntervalCollection;
11659
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
11549
11660
  description?: Cesium.Property | string;
11550
11661
  viewFrom?: Cesium.Property;
11551
11662
  parent?: Cesium.Entity;
@@ -11649,7 +11760,7 @@ declare namespace PolylineVolumeEntity {
11649
11760
  * @param options.positions - 坐标位置
11650
11761
  * @param options.style - 样式信息
11651
11762
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
11652
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11763
+ * @param [options.availability] - 指定时间范围内显示该对象
11653
11764
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
11654
11765
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
11655
11766
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -11679,7 +11790,7 @@ declare class PolylineVolumeEntity extends BasePolyEntity {
11679
11790
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
11680
11791
  style: PolylineVolumeEntity.StyleOptions | any;
11681
11792
  attr?: any;
11682
- availability?: Cesium.TimeIntervalCollection;
11793
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
11683
11794
  description?: Cesium.Property | string;
11684
11795
  viewFrom?: Cesium.Property;
11685
11796
  parent?: Cesium.Entity;
@@ -11721,7 +11832,7 @@ declare namespace RectangleEntity {
11721
11832
  * @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
11722
11833
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
11723
11834
  * @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
11724
- * @property [color = "#3388ff"] - 颜色
11835
+ * @property [color = "#ffffff"] - 颜色
11725
11836
  * @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
11726
11837
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
11727
11838
  * @property [outline = false] - 是否边框
@@ -11797,7 +11908,7 @@ declare namespace RectangleEntity {
11797
11908
  * @param [options.rectangle] - 矩形范围,与positions二选一。
11798
11909
  * @param options.style - 样式信息
11799
11910
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
11800
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
11911
+ * @param [options.availability] - 指定时间范围内显示该对象
11801
11912
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
11802
11913
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
11803
11914
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -11828,7 +11939,7 @@ declare class RectangleEntity extends BasePolyEntity {
11828
11939
  rectangle?: Cesium.Rectangle | Cesium.PositionProperty | Cesium.CallbackProperty;
11829
11940
  style: RectangleEntity.StyleOptions | any;
11830
11941
  attr?: any;
11831
- availability?: Cesium.TimeIntervalCollection;
11942
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
11832
11943
  description?: Cesium.Property | string;
11833
11944
  viewFrom?: Cesium.Property;
11834
11945
  parent?: Cesium.Entity;
@@ -12048,7 +12159,7 @@ declare namespace RectangularSensor {
12048
12159
  * @param options.style - 样式信息
12049
12160
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12050
12161
  * @param [options.orientation] - 实体方向
12051
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12162
+ * @param [options.availability] - 指定时间范围内显示该对象
12052
12163
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12053
12164
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12054
12165
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12075,7 +12186,7 @@ declare class RectangularSensor {
12075
12186
  style: RectangularSensor.StyleOptions | any;
12076
12187
  attr?: any;
12077
12188
  orientation?: Cesium.Property;
12078
- availability?: Cesium.TimeIntervalCollection;
12189
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12079
12190
  description?: Cesium.Property | string;
12080
12191
  viewFrom?: Cesium.Property;
12081
12192
  parent?: Cesium.Entity;
@@ -12363,7 +12474,7 @@ declare namespace WallEntity {
12363
12474
  * @param options.positions - 坐标位置
12364
12475
  * @param options.style - 样式信息
12365
12476
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12366
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12477
+ * @param [options.availability] - 指定时间范围内显示该对象
12367
12478
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12368
12479
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12369
12480
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12393,7 +12504,7 @@ declare class WallEntity extends BasePolyEntity {
12393
12504
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12394
12505
  style: WallEntity.StyleOptions | any;
12395
12506
  attr?: any;
12396
- availability?: Cesium.TimeIntervalCollection;
12507
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12397
12508
  description?: Cesium.Property | string;
12398
12509
  viewFrom?: Cesium.Property;
12399
12510
  parent?: Cesium.Entity;
@@ -12434,7 +12545,7 @@ declare class WallEntity extends BasePolyEntity {
12434
12545
  * @param options.positions - 坐标位置
12435
12546
  * @param options.style - 样式信息
12436
12547
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12437
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12548
+ * @param [options.availability] - 指定时间范围内显示该对象
12438
12549
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12439
12550
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12440
12551
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12458,7 +12569,7 @@ declare class AttackArrow extends PolygonEntity {
12458
12569
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12459
12570
  style: PolygonEntity.StyleOptions | any;
12460
12571
  attr?: any;
12461
- availability?: Cesium.TimeIntervalCollection;
12572
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12462
12573
  description?: Cesium.Property | string;
12463
12574
  viewFrom?: Cesium.Property;
12464
12575
  parent?: Cesium.Entity;
@@ -12485,7 +12596,7 @@ declare class AttackArrow extends PolygonEntity {
12485
12596
  * @param options.positions - 坐标位置
12486
12597
  * @param options.style - 样式信息
12487
12598
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12488
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12599
+ * @param [options.availability] - 指定时间范围内显示该对象
12489
12600
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12490
12601
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12491
12602
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12509,7 +12620,7 @@ declare class AttackArrowPW extends PolygonEntity {
12509
12620
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12510
12621
  style: PolygonEntity.StyleOptions | any;
12511
12622
  attr?: any;
12512
- availability?: Cesium.TimeIntervalCollection;
12623
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12513
12624
  description?: Cesium.Property | string;
12514
12625
  viewFrom?: Cesium.Property;
12515
12626
  parent?: Cesium.Entity;
@@ -12543,7 +12654,7 @@ declare class AttackArrowPW extends PolygonEntity {
12543
12654
  * @param options.positions - 坐标位置
12544
12655
  * @param options.style - 样式信息
12545
12656
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12546
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12657
+ * @param [options.availability] - 指定时间范围内显示该对象
12547
12658
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12548
12659
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12549
12660
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12567,7 +12678,7 @@ declare class AttackArrowYW extends PolygonEntity {
12567
12678
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12568
12679
  style: PolygonEntity.StyleOptions | any;
12569
12680
  attr?: any;
12570
- availability?: Cesium.TimeIntervalCollection;
12681
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12571
12682
  description?: Cesium.Property | string;
12572
12683
  viewFrom?: Cesium.Property;
12573
12684
  parent?: Cesium.Entity;
@@ -12601,7 +12712,7 @@ declare class AttackArrowYW extends PolygonEntity {
12601
12712
  * @param options.positions - 坐标位置
12602
12713
  * @param options.style - 样式信息
12603
12714
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12604
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12715
+ * @param [options.availability] - 指定时间范围内显示该对象
12605
12716
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12606
12717
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12607
12718
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12625,7 +12736,7 @@ declare class CloseVurve extends PolygonEntity {
12625
12736
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12626
12737
  style: PolygonEntity.StyleOptions | any;
12627
12738
  attr?: any;
12628
- availability?: Cesium.TimeIntervalCollection;
12739
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12629
12740
  description?: Cesium.Property | string;
12630
12741
  viewFrom?: Cesium.Property;
12631
12742
  parent?: Cesium.Entity;
@@ -12659,7 +12770,7 @@ declare class CloseVurve extends PolygonEntity {
12659
12770
  * @param options.positions - 坐标位置
12660
12771
  * @param options.style - 样式信息
12661
12772
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12662
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12773
+ * @param [options.availability] - 指定时间范围内显示该对象
12663
12774
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12664
12775
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12665
12776
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12683,7 +12794,7 @@ declare class DoubleArrow extends PolygonEntity {
12683
12794
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12684
12795
  style: PolygonEntity.StyleOptions | any;
12685
12796
  attr?: any;
12686
- availability?: Cesium.TimeIntervalCollection;
12797
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12687
12798
  description?: Cesium.Property | string;
12688
12799
  viewFrom?: Cesium.Property;
12689
12800
  parent?: Cesium.Entity;
@@ -12729,7 +12840,7 @@ declare class EditSector extends EditPolygon {
12729
12840
  * @param options.positions - 坐标位置
12730
12841
  * @param options.style - 样式信息
12731
12842
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12732
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12843
+ * @param [options.availability] - 指定时间范围内显示该对象
12733
12844
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12734
12845
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12735
12846
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12753,7 +12864,7 @@ declare class FineArrow extends PolygonEntity {
12753
12864
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12754
12865
  style: PolygonEntity.StyleOptions | any;
12755
12866
  attr?: any;
12756
- availability?: Cesium.TimeIntervalCollection;
12867
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12757
12868
  description?: Cesium.Property | string;
12758
12869
  viewFrom?: Cesium.Property;
12759
12870
  parent?: Cesium.Entity;
@@ -12787,7 +12898,7 @@ declare class FineArrow extends PolygonEntity {
12787
12898
  * @param options.positions - 坐标位置
12788
12899
  * @param options.style - 样式信息
12789
12900
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12790
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12901
+ * @param [options.availability] - 指定时间范围内显示该对象
12791
12902
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12792
12903
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12793
12904
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12811,7 +12922,7 @@ declare class FineArrowYW extends PolygonEntity {
12811
12922
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12812
12923
  style: PolygonEntity.StyleOptions | any;
12813
12924
  attr?: any;
12814
- availability?: Cesium.TimeIntervalCollection;
12925
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12815
12926
  description?: Cesium.Property | string;
12816
12927
  viewFrom?: Cesium.Property;
12817
12928
  parent?: Cesium.Entity;
@@ -12845,7 +12956,7 @@ declare class FineArrowYW extends PolygonEntity {
12845
12956
  * @param options.positions - 坐标位置
12846
12957
  * @param options.style - 样式信息
12847
12958
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12848
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
12959
+ * @param [options.availability] - 指定时间范围内显示该对象
12849
12960
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12850
12961
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12851
12962
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12869,7 +12980,7 @@ declare class GatheringPlace extends PolygonEntity {
12869
12980
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12870
12981
  style: PolygonEntity.StyleOptions | any;
12871
12982
  attr?: any;
12872
- availability?: Cesium.TimeIntervalCollection;
12983
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12873
12984
  description?: Cesium.Property | string;
12874
12985
  viewFrom?: Cesium.Property;
12875
12986
  parent?: Cesium.Entity;
@@ -12903,7 +13014,7 @@ declare class GatheringPlace extends PolygonEntity {
12903
13014
  * @param options.positions - 坐标位置
12904
13015
  * @param options.style - 样式信息
12905
13016
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12906
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13017
+ * @param [options.availability] - 指定时间范围内显示该对象
12907
13018
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12908
13019
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12909
13020
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12927,7 +13038,7 @@ declare class IsosTriangle extends PolygonEntity {
12927
13038
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12928
13039
  style: PolygonEntity.StyleOptions | any;
12929
13040
  attr?: any;
12930
- availability?: Cesium.TimeIntervalCollection;
13041
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12931
13042
  description?: Cesium.Property | string;
12932
13043
  viewFrom?: Cesium.Property;
12933
13044
  parent?: Cesium.Entity;
@@ -12961,7 +13072,7 @@ declare class IsosTriangle extends PolygonEntity {
12961
13072
  * @param options.positions - 坐标位置
12962
13073
  * @param options.style - 样式信息
12963
13074
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
12964
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13075
+ * @param [options.availability] - 指定时间范围内显示该对象
12965
13076
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
12966
13077
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
12967
13078
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -12985,7 +13096,7 @@ declare class Lune extends PolygonEntity {
12985
13096
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
12986
13097
  style: PolygonEntity.StyleOptions | any;
12987
13098
  attr?: any;
12988
- availability?: Cesium.TimeIntervalCollection;
13099
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
12989
13100
  description?: Cesium.Property | string;
12990
13101
  viewFrom?: Cesium.Property;
12991
13102
  parent?: Cesium.Entity;
@@ -13023,7 +13134,7 @@ declare class Lune extends PolygonEntity {
13023
13134
  * @param options.style.radius - 区域的半径(单位:米)
13024
13135
  * @param [options.style.startAngle = 0] - 区域的开始角度(正东方向为0,顺时针到360度)
13025
13136
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13026
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13137
+ * @param [options.availability] - 指定时间范围内显示该对象
13027
13138
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13028
13139
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13029
13140
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13052,7 +13163,7 @@ declare class Regular extends PolygonEntity {
13052
13163
  startAngle?: number;
13053
13164
  };
13054
13165
  attr?: any;
13055
- availability?: Cesium.TimeIntervalCollection;
13166
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13056
13167
  description?: Cesium.Property | string;
13057
13168
  viewFrom?: Cesium.Property;
13058
13169
  parent?: Cesium.Entity;
@@ -13106,7 +13217,7 @@ declare class Regular extends PolygonEntity {
13106
13217
  * @param options.style.endAngle - 扇形区域的结束角度(正东方向为0,顺时针到360度)
13107
13218
  * @param [options.style.noCenter] - 不连中心点
13108
13219
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13109
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13220
+ * @param [options.availability] - 指定时间范围内显示该对象
13110
13221
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13111
13222
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13112
13223
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13136,7 +13247,7 @@ declare class Sector extends PolygonEntity {
13136
13247
  noCenter?: boolean;
13137
13248
  };
13138
13249
  attr?: any;
13139
- availability?: Cesium.TimeIntervalCollection;
13250
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13140
13251
  description?: Cesium.Property | string;
13141
13252
  viewFrom?: Cesium.Property;
13142
13253
  parent?: Cesium.Entity;
@@ -13200,7 +13311,7 @@ declare class Sector extends PolygonEntity {
13200
13311
  * @param options.positions - 坐标位置
13201
13312
  * @param options.style - 样式信息
13202
13313
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13203
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13314
+ * @param [options.availability] - 指定时间范围内显示该对象
13204
13315
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13205
13316
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13206
13317
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13224,7 +13335,7 @@ declare class StraightArrow extends PolygonEntity {
13224
13335
  positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
13225
13336
  style: PolygonEntity.StyleOptions | any;
13226
13337
  attr?: any;
13227
- availability?: Cesium.TimeIntervalCollection;
13338
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13228
13339
  description?: Cesium.Property | string;
13229
13340
  viewFrom?: Cesium.Property;
13230
13341
  parent?: Cesium.Entity;
@@ -13262,7 +13373,7 @@ declare class StraightArrow extends PolygonEntity {
13262
13373
  * @param [options.label] - 测量结果文本的样式
13263
13374
  * @param [options.angleDecimal = 1] - 显示的 角度值 文本中保留的小数位
13264
13375
  * @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
13265
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13376
+ * @param [options.availability] - 指定时间范围内显示该对象
13266
13377
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13267
13378
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13268
13379
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13295,7 +13406,7 @@ declare class AngleMeasure extends PolylineEntity {
13295
13406
  label?: LabelEntity.StyleOptions | any;
13296
13407
  angleDecimal?: number;
13297
13408
  decimal?: number;
13298
- availability?: Cesium.TimeIntervalCollection;
13409
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13299
13410
  description?: Cesium.Property | string;
13300
13411
  viewFrom?: Cesium.Property;
13301
13412
  parent?: Cesium.Entity;
@@ -13341,7 +13452,7 @@ declare class AngleMeasure extends PolylineEntity {
13341
13452
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13342
13453
  * @param [options.label] - 测量结果文本的样式
13343
13454
  * @param [options.decimal = 2] - 显示的 面积值 文本中保留的小数位
13344
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13455
+ * @param [options.availability] - 指定时间范围内显示该对象
13345
13456
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13346
13457
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13347
13458
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13373,7 +13484,7 @@ declare class AreaMeasure extends PolygonEntity {
13373
13484
  attr?: any;
13374
13485
  label?: LabelEntity.StyleOptions | any;
13375
13486
  decimal?: number;
13376
- availability?: Cesium.TimeIntervalCollection;
13487
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13377
13488
  description?: Cesium.Property | string;
13378
13489
  viewFrom?: Cesium.Property;
13379
13490
  parent?: Cesium.Entity;
@@ -13425,7 +13536,7 @@ declare class AreaMeasure extends PolygonEntity {
13425
13536
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13426
13537
  * @param [options.label] - 测量结果文本的样式
13427
13538
  * @param [options.decimal = 2] - 显示的 面积值 文本中保留的小数位
13428
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13539
+ * @param [options.availability] - 指定时间范围内显示该对象
13429
13540
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13430
13541
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13431
13542
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13457,7 +13568,7 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
13457
13568
  attr?: any;
13458
13569
  label?: LabelEntity.StyleOptions | any;
13459
13570
  decimal?: number;
13460
- availability?: Cesium.TimeIntervalCollection;
13571
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13461
13572
  description?: Cesium.Property | string;
13462
13573
  viewFrom?: Cesium.Property;
13463
13574
  parent?: Cesium.Entity;
@@ -13493,7 +13604,7 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
13493
13604
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13494
13605
  * @param [options.label] - 测量结果文本的样式
13495
13606
  * @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
13496
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13607
+ * @param [options.availability] - 指定时间范围内显示该对象
13497
13608
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13498
13609
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13499
13610
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13525,7 +13636,7 @@ declare class DistanceMeasure extends PolylineEntity {
13525
13636
  attr?: any;
13526
13637
  label?: LabelEntity.StyleOptions | any;
13527
13638
  decimal?: number;
13528
- availability?: Cesium.TimeIntervalCollection;
13639
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13529
13640
  description?: Cesium.Property | string;
13530
13641
  viewFrom?: Cesium.Property;
13531
13642
  parent?: Cesium.Entity;
@@ -13571,7 +13682,7 @@ declare class DistanceMeasure extends PolylineEntity {
13571
13682
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13572
13683
  * @param [options.label] - 测量结果文本的样式
13573
13684
  * @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
13574
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13685
+ * @param [options.availability] - 指定时间范围内显示该对象
13575
13686
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13576
13687
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13577
13688
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13603,7 +13714,7 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
13603
13714
  attr?: any;
13604
13715
  label?: LabelEntity.StyleOptions | any;
13605
13716
  decimal?: number;
13606
- availability?: Cesium.TimeIntervalCollection;
13717
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13607
13718
  description?: Cesium.Property | string;
13608
13719
  viewFrom?: Cesium.Property;
13609
13720
  parent?: Cesium.Entity;
@@ -13639,7 +13750,7 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
13639
13750
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13640
13751
  * @param [options.label] - 测量结果文本的样式
13641
13752
  * @param [options.decimal = 2] - 显示的 距离和高度值 文本中保留的小数位
13642
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13753
+ * @param [options.availability] - 指定时间范围内显示该对象
13643
13754
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13644
13755
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13645
13756
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13671,7 +13782,7 @@ declare class HeightMeasure extends PolylineEntity {
13671
13782
  attr?: any;
13672
13783
  label?: LabelEntity.StyleOptions | any;
13673
13784
  decimal?: number;
13674
- availability?: Cesium.TimeIntervalCollection;
13785
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13675
13786
  description?: Cesium.Property | string;
13676
13787
  viewFrom?: Cesium.Property;
13677
13788
  parent?: Cesium.Entity;
@@ -13717,7 +13828,7 @@ declare class HeightMeasure extends PolylineEntity {
13717
13828
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13718
13829
  * @param [options.label] - 测量结果文本的样式
13719
13830
  * @param [options.decimal = 2] - 显示的 距离和高度值 文本中保留的小数位
13720
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13831
+ * @param [options.availability] - 指定时间范围内显示该对象
13721
13832
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13722
13833
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13723
13834
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13749,7 +13860,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
13749
13860
  attr?: any;
13750
13861
  label?: LabelEntity.StyleOptions | any;
13751
13862
  decimal?: number;
13752
- availability?: Cesium.TimeIntervalCollection;
13863
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13753
13864
  description?: Cesium.Property | string;
13754
13865
  viewFrom?: Cesium.Property;
13755
13866
  parent?: Cesium.Entity;
@@ -13790,7 +13901,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
13790
13901
  * @param options.position - 坐标位置
13791
13902
  * @param options.style - 样式信息
13792
13903
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13793
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13904
+ * @param [options.availability] - 指定时间范围内显示该对象
13794
13905
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13795
13906
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13796
13907
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13817,7 +13928,7 @@ declare class PointMeasure extends PointEntity {
13817
13928
  position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
13818
13929
  style: PointEntity.StyleOptions | any;
13819
13930
  attr?: any;
13820
- availability?: Cesium.TimeIntervalCollection;
13931
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13821
13932
  description?: Cesium.Property | string;
13822
13933
  viewFrom?: Cesium.Property;
13823
13934
  parent?: Cesium.Entity;
@@ -13849,7 +13960,7 @@ declare class PointMeasure extends PointEntity {
13849
13960
  * @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
13850
13961
  * @param [options.label] - 测量结果文本的样式
13851
13962
  * @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
13852
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
13963
+ * @param [options.availability] - 指定时间范围内显示该对象
13853
13964
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
13854
13965
  * @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
13855
13966
  * @param [options.parent] - 要与此实体关联的父实体。
@@ -13882,7 +13993,7 @@ declare class SectionMeasure extends DistanceMeasure {
13882
13993
  attr?: any;
13883
13994
  label?: LabelEntity.StyleOptions | any;
13884
13995
  decimal?: number;
13885
- availability?: Cesium.TimeIntervalCollection;
13996
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
13886
13997
  description?: Cesium.Property | string;
13887
13998
  viewFrom?: Cesium.Property;
13888
13999
  parent?: Cesium.Entity;
@@ -14147,6 +14258,7 @@ declare class VolumeMeasure extends AreaMeasure {
14147
14258
  * @param [options.id = createGuid()] - 矢量数据id标识
14148
14259
  * @param [options.name = ''] - 矢量数据名称
14149
14260
  * @param [options.show = true] - 矢量数据是否显示
14261
+ * @param [options.availability] - 指定时间范围内显示该对象
14150
14262
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14151
14263
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14152
14264
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -14189,6 +14301,7 @@ declare class BasePointPrimitive extends BasePrimitive {
14189
14301
  id?: string | number;
14190
14302
  name?: string;
14191
14303
  show?: boolean;
14304
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
14192
14305
  eventParent?: BaseClass | boolean;
14193
14306
  allowDrillPick?: boolean | ((...params: any[]) => any);
14194
14307
  flyTo?: boolean;
@@ -14322,6 +14435,7 @@ declare class BasePointPrimitive extends BasePrimitive {
14322
14435
  * @param [options.id = createGuid()] - 矢量数据id标识
14323
14436
  * @param [options.name = ''] - 矢量数据名称
14324
14437
  * @param [options.show = true] - 矢量数据是否显示
14438
+ * @param [options.availability] - 指定时间范围内显示该对象
14325
14439
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14326
14440
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14327
14441
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -14352,6 +14466,7 @@ declare class BasePolyPrimitive extends BasePrimitive {
14352
14466
  id?: string | number;
14353
14467
  name?: string;
14354
14468
  show?: boolean;
14469
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
14355
14470
  eventParent?: BaseClass | boolean;
14356
14471
  allowDrillPick?: boolean | ((...params: any[]) => any);
14357
14472
  flyTo?: boolean;
@@ -14451,6 +14566,7 @@ declare class BasePolyPrimitive extends BasePrimitive {
14451
14566
  * @param [options.id = createGuid()] - 矢量数据id标识
14452
14567
  * @param [options.name = ''] - 矢量数据名称
14453
14568
  * @param [options.show = true] - 矢量数据是否显示
14569
+ * @param [options.availability] - 指定时间范围内显示该对象
14454
14570
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14455
14571
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14456
14572
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -14482,6 +14598,7 @@ declare class BasePrimitive extends BaseGraphic {
14482
14598
  id?: string | number;
14483
14599
  name?: string;
14484
14600
  show?: boolean;
14601
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
14485
14602
  eventParent?: BaseClass | boolean;
14486
14603
  allowDrillPick?: boolean | ((...params: any[]) => any);
14487
14604
  flyTo?: boolean;
@@ -14602,6 +14719,7 @@ declare class BasePrimitive extends BaseGraphic {
14602
14719
  * @param [options.id = createGuid()] - 矢量数据id标识
14603
14720
  * @param [options.name = ''] - 矢量数据名称
14604
14721
  * @param [options.show = true] - 矢量数据是否显示
14722
+ * @param [options.availability] - 指定时间范围内显示该对象
14605
14723
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14606
14724
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14607
14725
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -14625,6 +14743,7 @@ declare class BillboardPrimitive extends BasePointPrimitive {
14625
14743
  id?: string | number;
14626
14744
  name?: string;
14627
14745
  show?: boolean;
14746
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
14628
14747
  eventParent?: BaseClass | boolean;
14629
14748
  allowDrillPick?: boolean | ((...params: any[]) => any);
14630
14749
  flyTo?: boolean;
@@ -14739,6 +14858,7 @@ declare namespace BoxPrimitive {
14739
14858
  * @param [options.id = createGuid()] - 矢量数据id标识
14740
14859
  * @param [options.name = ''] - 矢量数据名称
14741
14860
  * @param [options.show = true] - 矢量数据是否显示
14861
+ * @param [options.availability] - 指定时间范围内显示该对象
14742
14862
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14743
14863
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14744
14864
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -14770,6 +14890,7 @@ declare class BoxPrimitive extends BasePointPrimitive {
14770
14890
  id?: string | number;
14771
14891
  name?: string;
14772
14892
  show?: boolean;
14893
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
14773
14894
  eventParent?: BaseClass | boolean;
14774
14895
  allowDrillPick?: boolean | ((...params: any[]) => any);
14775
14896
  flyTo?: boolean;
@@ -14878,6 +14999,7 @@ declare namespace CirclePrimitive {
14878
14999
  * @param [options.id = createGuid()] - 矢量数据id标识
14879
15000
  * @param [options.name = ''] - 矢量数据名称
14880
15001
  * @param [options.show = true] - 矢量数据是否显示
15002
+ * @param [options.availability] - 指定时间范围内显示该对象
14881
15003
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
14882
15004
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
14883
15005
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -14909,6 +15031,7 @@ declare class CirclePrimitive extends BasePointPrimitive {
14909
15031
  id?: string | number;
14910
15032
  name?: string;
14911
15033
  show?: boolean;
15034
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
14912
15035
  eventParent?: BaseClass | boolean;
14913
15036
  allowDrillPick?: boolean | ((...params: any[]) => any);
14914
15037
  flyTo?: boolean;
@@ -15029,6 +15152,7 @@ declare namespace CloudPrimitive {
15029
15152
  * @param [options.id = createGuid()] - 矢量数据id标识
15030
15153
  * @param [options.name = ''] - 矢量数据名称
15031
15154
  * @param [options.show = true] - 矢量数据是否显示
15155
+ * @param [options.availability] - 指定时间范围内显示该对象
15032
15156
  * @param [options.stopPropagation = false] - 当前类中事件是否停止冒泡, false时:事件冒泡到layer中。
15033
15157
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
15034
15158
  * @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
@@ -15046,6 +15170,7 @@ declare class CloudPrimitive extends BasePointPrimitive {
15046
15170
  id?: string | number;
15047
15171
  name?: string;
15048
15172
  show?: boolean;
15173
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15049
15174
  stopPropagation?: boolean;
15050
15175
  flyTo?: boolean;
15051
15176
  flyToOptions?: any;
@@ -15245,6 +15370,7 @@ declare namespace ConeTrackPrimitive {
15245
15370
  * @param [options.id = createGuid()] - 矢量数据id标识
15246
15371
  * @param [options.name = ''] - 矢量数据名称
15247
15372
  * @param [options.show = true] - 矢量数据是否显示
15373
+ * @param [options.availability] - 指定时间范围内显示该对象
15248
15374
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15249
15375
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15250
15376
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15276,6 +15402,7 @@ declare class ConeTrackPrimitive extends CylinderPrimitive {
15276
15402
  id?: string | number;
15277
15403
  name?: string;
15278
15404
  show?: boolean;
15405
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15279
15406
  eventParent?: BaseClass | boolean;
15280
15407
  allowDrillPick?: boolean | ((...params: any[]) => any);
15281
15408
  flyTo?: boolean;
@@ -15307,7 +15434,7 @@ declare namespace CorridorPrimitive {
15307
15434
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
15308
15435
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
15309
15436
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
15310
- * @property [color = "#3388ff"] - 颜色
15437
+ * @property [color = "#ffffff"] - 颜色
15311
15438
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
15312
15439
  * @property [outline = false] - 是否边框
15313
15440
  * @property [outlineColor = "#ffffff"] - 边框颜色
@@ -15394,6 +15521,7 @@ declare namespace CorridorPrimitive {
15394
15521
  * @param [options.id = createGuid()] - 矢量数据id标识
15395
15522
  * @param [options.name = ''] - 矢量数据名称
15396
15523
  * @param [options.show = true] - 矢量数据是否显示
15524
+ * @param [options.availability] - 指定时间范围内显示该对象
15397
15525
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15398
15526
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15399
15527
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15424,6 +15552,7 @@ declare class CorridorPrimitive extends BasePolyPrimitive {
15424
15552
  id?: string | number;
15425
15553
  name?: string;
15426
15554
  show?: boolean;
15555
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15427
15556
  eventParent?: BaseClass | boolean;
15428
15557
  allowDrillPick?: boolean | ((...params: any[]) => any);
15429
15558
  flyTo?: boolean;
@@ -15516,6 +15645,7 @@ declare namespace CylinderPrimitive {
15516
15645
  * @param [options.id = createGuid()] - 矢量数据id标识
15517
15646
  * @param [options.name = ''] - 矢量数据名称
15518
15647
  * @param [options.show = true] - 矢量数据是否显示
15648
+ * @param [options.availability] - 指定时间范围内显示该对象
15519
15649
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15520
15650
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15521
15651
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15547,6 +15677,7 @@ declare class CylinderPrimitive extends BasePointPrimitive {
15547
15677
  id?: string | number;
15548
15678
  name?: string;
15549
15679
  show?: boolean;
15680
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15550
15681
  eventParent?: BaseClass | boolean;
15551
15682
  allowDrillPick?: boolean | ((...params: any[]) => any);
15552
15683
  flyTo?: boolean;
@@ -15558,7 +15689,7 @@ declare namespace DiffuseWall {
15558
15689
  /**
15559
15690
  * 立体面(或圆)散射效果 支持的样式信息
15560
15691
  * @property [diffHeight = 100] - 墙高
15561
- * @property [color = "#3388ff"] - 颜色
15692
+ * @property [color = "#ffffff"] - 颜色
15562
15693
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
15563
15694
  * @property [speed = 10] - 扩散的速度,值越大越快
15564
15695
  * @property [maxScale = 1] - 扩散的最大比例
@@ -15589,6 +15720,7 @@ declare namespace DiffuseWall {
15589
15720
  * @param [options.id = createGuid()] - 矢量数据id标识
15590
15721
  * @param [options.name = ''] - 矢量数据名称
15591
15722
  * @param [options.show = true] - 矢量数据是否显示
15723
+ * @param [options.availability] - 指定时间范围内显示该对象
15592
15724
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15593
15725
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15594
15726
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15608,6 +15740,7 @@ declare class DiffuseWall extends BasePolyPrimitive {
15608
15740
  id?: string | number;
15609
15741
  name?: string;
15610
15742
  show?: boolean;
15743
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15611
15744
  eventParent?: BaseClass | boolean;
15612
15745
  allowDrillPick?: boolean | ((...params: any[]) => any);
15613
15746
  flyTo?: boolean;
@@ -15712,6 +15845,7 @@ declare namespace DoubleSidedPlane {
15712
15845
  * @param [options.id = createGuid()] - 矢量数据id标识
15713
15846
  * @param [options.name = ''] - 矢量数据名称
15714
15847
  * @param [options.show = true] - 矢量数据是否显示
15848
+ * @param [options.availability] - 指定时间范围内显示该对象
15715
15849
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15716
15850
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15717
15851
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15743,6 +15877,7 @@ declare class DoubleSidedPlane extends BasePointPrimitive {
15743
15877
  id?: string | number;
15744
15878
  name?: string;
15745
15879
  show?: boolean;
15880
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15746
15881
  eventParent?: BaseClass | boolean;
15747
15882
  allowDrillPick?: boolean | ((...params: any[]) => any);
15748
15883
  flyTo?: boolean;
@@ -15783,6 +15918,7 @@ declare namespace DynamicRiver {
15783
15918
  * @param [options.id = createGuid()] - 矢量数据id标识
15784
15919
  * @param [options.name = ''] - 矢量数据名称
15785
15920
  * @param [options.show = true] - 矢量数据是否显示
15921
+ * @param [options.availability] - 指定时间范围内显示该对象
15786
15922
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15787
15923
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15788
15924
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15796,6 +15932,7 @@ declare class DynamicRiver extends BasePolyPrimitive {
15796
15932
  id?: string | number;
15797
15933
  name?: string;
15798
15934
  show?: boolean;
15935
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15799
15936
  eventParent?: BaseClass | boolean;
15800
15937
  allowDrillPick?: boolean | ((...params: any[]) => any);
15801
15938
  flyTo?: boolean;
@@ -15961,6 +16098,7 @@ declare namespace EllipsoidPrimitive {
15961
16098
  * @param [options.id = createGuid()] - 矢量数据id标识
15962
16099
  * @param [options.name = ''] - 矢量数据名称
15963
16100
  * @param [options.show = true] - 矢量数据是否显示
16101
+ * @param [options.availability] - 指定时间范围内显示该对象
15964
16102
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
15965
16103
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
15966
16104
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -15992,6 +16130,7 @@ declare class EllipsoidPrimitive extends BasePointPrimitive {
15992
16130
  id?: string | number;
15993
16131
  name?: string;
15994
16132
  show?: boolean;
16133
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
15995
16134
  eventParent?: BaseClass | boolean;
15996
16135
  allowDrillPick?: boolean | ((...params: any[]) => any);
15997
16136
  flyTo?: boolean;
@@ -16083,6 +16222,7 @@ declare namespace FrustumPrimitive {
16083
16222
  * @param [options.id = createGuid()] - 矢量数据id标识
16084
16223
  * @param [options.name = ''] - 矢量数据名称
16085
16224
  * @param [options.show = true] - 矢量数据是否显示
16225
+ * @param [options.availability] - 指定时间范围内显示该对象
16086
16226
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16087
16227
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16088
16228
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16115,6 +16255,7 @@ declare class FrustumPrimitive extends BasePointPrimitive {
16115
16255
  id?: string | number;
16116
16256
  name?: string;
16117
16257
  show?: boolean;
16258
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16118
16259
  eventParent?: BaseClass | boolean;
16119
16260
  allowDrillPick?: boolean | ((...params: any[]) => any);
16120
16261
  flyTo?: boolean;
@@ -16192,6 +16333,7 @@ declare namespace LabelPrimitive {
16192
16333
  * @param [options.id = createGuid()] - 矢量数据id标识
16193
16334
  * @param [options.name = ''] - 矢量数据名称
16194
16335
  * @param [options.show = true] - 矢量数据是否显示
16336
+ * @param [options.availability] - 指定时间范围内显示该对象
16195
16337
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16196
16338
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16197
16339
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16215,6 +16357,7 @@ declare class LabelPrimitive extends BasePointPrimitive {
16215
16357
  id?: string | number;
16216
16358
  name?: string;
16217
16359
  show?: boolean;
16360
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16218
16361
  eventParent?: BaseClass | boolean;
16219
16362
  allowDrillPick?: boolean | ((...params: any[]) => any);
16220
16363
  flyTo?: boolean;
@@ -16268,6 +16411,7 @@ declare namespace LightCone {
16268
16411
  * @param [options.id = createGuid()] - 矢量数据id标识
16269
16412
  * @param [options.name = ''] - 矢量数据名称
16270
16413
  * @param [options.show = true] - 矢量数据是否显示
16414
+ * @param [options.availability] - 指定时间范围内显示该对象
16271
16415
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16272
16416
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16273
16417
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16286,6 +16430,7 @@ declare class LightCone extends BasePointPrimitive {
16286
16430
  id?: string | number;
16287
16431
  name?: string;
16288
16432
  show?: boolean;
16433
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16289
16434
  eventParent?: BaseClass | boolean;
16290
16435
  allowDrillPick?: boolean | ((...params: any[]) => any);
16291
16436
  flyTo?: boolean;
@@ -16322,7 +16467,7 @@ declare namespace ModelPrimitive {
16322
16467
  * @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
16323
16468
  * @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
16324
16469
  * @property [fill = false] - 是否填充,指定与模型渲染颜色混合
16325
- * @property [color = "#3388ff"] - 颜色
16470
+ * @property [color = "#ffffff"] - 颜色
16326
16471
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
16327
16472
  * @property [colorBlendMode = ColorBlendMode.HIGHLIGHT] - 指定颜色如何与模型混合。
16328
16473
  * @property [colorBlendAmount = 0.5] - 当colorBlendMode为MIX时指定颜色强度的数字属性。0.0的值表示模型渲染的颜色,1.0的值表示纯色,任何介于两者之间的值表示两者的混合。
@@ -16496,6 +16641,7 @@ declare namespace ModelPrimitive {
16496
16641
  * @param [options.id = createGuid()] - 矢量数据id标识
16497
16642
  * @param [options.name = ''] - 矢量数据名称
16498
16643
  * @param [options.show = true] - 矢量数据是否显示
16644
+ * @param [options.availability] - 指定时间范围内显示该对象
16499
16645
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16500
16646
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16501
16647
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16529,6 +16675,7 @@ declare class ModelPrimitive extends BasePointPrimitive {
16529
16675
  id?: string | number;
16530
16676
  name?: string;
16531
16677
  show?: boolean;
16678
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16532
16679
  eventParent?: BaseClass | boolean;
16533
16680
  allowDrillPick?: boolean | ((...params: any[]) => any);
16534
16681
  flyTo?: boolean;
@@ -16607,6 +16754,7 @@ declare namespace Pit {
16607
16754
  * @param [options.id = createGuid()] - 矢量数据id标识
16608
16755
  * @param [options.name = ''] - 矢量数据名称
16609
16756
  * @param [options.show = true] - 矢量数据是否显示
16757
+ * @param [options.availability] - 指定时间范围内显示该对象
16610
16758
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16611
16759
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16612
16760
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16637,6 +16785,7 @@ declare class Pit extends BasePolyPrimitive {
16637
16785
  id?: string | number;
16638
16786
  name?: string;
16639
16787
  show?: boolean;
16788
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16640
16789
  eventParent?: BaseClass | boolean;
16641
16790
  allowDrillPick?: boolean | ((...params: any[]) => any);
16642
16791
  flyTo?: boolean;
@@ -16741,6 +16890,7 @@ declare namespace PlanePrimitive {
16741
16890
  * @param [options.id = createGuid()] - 矢量数据id标识
16742
16891
  * @param [options.name = ''] - 矢量数据名称
16743
16892
  * @param [options.show = true] - 矢量数据是否显示
16893
+ * @param [options.availability] - 指定时间范围内显示该对象
16744
16894
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16745
16895
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16746
16896
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16772,6 +16922,7 @@ declare class PlanePrimitive extends BasePointPrimitive {
16772
16922
  id?: string | number;
16773
16923
  name?: string;
16774
16924
  show?: boolean;
16925
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16775
16926
  eventParent?: BaseClass | boolean;
16776
16927
  allowDrillPick?: boolean | ((...params: any[]) => any);
16777
16928
  flyTo?: boolean;
@@ -16787,7 +16938,7 @@ declare namespace PointPrimitive {
16787
16938
  /**
16788
16939
  * 像素点 支持的样式信息
16789
16940
  * @property [pixelSize = 10] - 像素大小
16790
- * @property [color = "#3388ff"] - 颜色
16941
+ * @property [color = "#ffffff"] - 颜色
16791
16942
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
16792
16943
  * @property [outline = false] - 是否边框
16793
16944
  * @property [outlineColor = "#ffffff"] - 边框颜色
@@ -16855,6 +17006,7 @@ declare namespace PointPrimitive {
16855
17006
  * @param [options.id = createGuid()] - 矢量数据id标识
16856
17007
  * @param [options.name = ''] - 矢量数据名称
16857
17008
  * @param [options.show = true] - 矢量数据是否显示
17009
+ * @param [options.availability] - 指定时间范围内显示该对象
16858
17010
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
16859
17011
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
16860
17012
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -16879,6 +17031,7 @@ declare class PointPrimitive extends BasePointPrimitive {
16879
17031
  id?: string | number;
16880
17032
  name?: string;
16881
17033
  show?: boolean;
17034
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
16882
17035
  eventParent?: BaseClass | boolean;
16883
17036
  allowDrillPick?: boolean | ((...params: any[]) => any);
16884
17037
  flyTo?: boolean;
@@ -16900,7 +17053,7 @@ declare namespace PolygonPrimitive {
16900
17053
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
16901
17054
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
16902
17055
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
16903
- * @property [color = "#3388ff"] - 颜色
17056
+ * @property [color = "#ffffff"] - 颜色
16904
17057
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
16905
17058
  * @property [randomColor = false] - 是否随机颜色
16906
17059
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
@@ -17014,6 +17167,7 @@ declare namespace PolygonPrimitive {
17014
17167
  * @param [options.id = createGuid()] - 矢量数据id标识
17015
17168
  * @param [options.name = ''] - 矢量数据名称
17016
17169
  * @param [options.show = true] - 矢量数据是否显示
17170
+ * @param [options.availability] - 指定时间范围内显示该对象
17017
17171
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17018
17172
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17019
17173
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17044,6 +17198,7 @@ declare class PolygonPrimitive extends BasePolyPrimitive {
17044
17198
  id?: string | number;
17045
17199
  name?: string;
17046
17200
  show?: boolean;
17201
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17047
17202
  eventParent?: BaseClass | boolean;
17048
17203
  allowDrillPick?: boolean | ((...params: any[]) => any);
17049
17204
  flyTo?: boolean;
@@ -17070,7 +17225,7 @@ declare namespace PolylinePrimitive {
17070
17225
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
17071
17226
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
17072
17227
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
17073
- * @property [color = "#3388ff"] - 颜色
17228
+ * @property [color = "#ffffff"] - 颜色
17074
17229
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
17075
17230
  * @property [randomColor = false] - 是否随机颜色
17076
17231
  * @property [colors] - 定义每顶点或每段颜色 的数组。
@@ -17151,6 +17306,7 @@ declare namespace PolylinePrimitive {
17151
17306
  * @param [options.id = createGuid()] - 矢量数据id标识
17152
17307
  * @param [options.name = ''] - 矢量数据名称
17153
17308
  * @param [options.show = true] - 矢量数据是否显示
17309
+ * @param [options.availability] - 指定时间范围内显示该对象
17154
17310
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17155
17311
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17156
17312
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17181,6 +17337,7 @@ declare class PolylinePrimitive extends BasePolyPrimitive {
17181
17337
  id?: string | number;
17182
17338
  name?: string;
17183
17339
  show?: boolean;
17340
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17184
17341
  eventParent?: BaseClass | boolean;
17185
17342
  allowDrillPick?: boolean | ((...params: any[]) => any);
17186
17343
  flyTo?: boolean;
@@ -17202,7 +17359,7 @@ declare namespace PolylineVolumePrimitive {
17202
17359
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
17203
17360
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
17204
17361
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
17205
- * @property [color = "#3388ff"] - 颜色
17362
+ * @property [color = "#ffffff"] - 颜色
17206
17363
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
17207
17364
  * @property [cornerType = CornerType.ROUNDED] - 指定边角的样式。
17208
17365
  * @property [granularity = Cesium.Math.RADIANS_PER_DEGREE] - 指定每个纬度点和经度点之间的角距离。
@@ -17278,6 +17435,7 @@ declare namespace PolylineVolumePrimitive {
17278
17435
  * @param [options.id = createGuid()] - 矢量数据id标识
17279
17436
  * @param [options.name = ''] - 矢量数据名称
17280
17437
  * @param [options.show = true] - 矢量数据是否显示
17438
+ * @param [options.availability] - 指定时间范围内显示该对象
17281
17439
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17282
17440
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17283
17441
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17308,6 +17466,7 @@ declare class PolylineVolumePrimitive extends BasePolyPrimitive {
17308
17466
  id?: string | number;
17309
17467
  name?: string;
17310
17468
  show?: boolean;
17469
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17311
17470
  eventParent?: BaseClass | boolean;
17312
17471
  allowDrillPick?: boolean | ((...params: any[]) => any);
17313
17472
  flyTo?: boolean;
@@ -17321,7 +17480,7 @@ declare namespace RectanglePrimitive {
17321
17480
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
17322
17481
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
17323
17482
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
17324
- * @property [color = "#3388ff"] - 颜色
17483
+ * @property [color = "#ffffff"] - 颜色
17325
17484
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
17326
17485
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
17327
17486
  * @property [outline = false] - 是否边框
@@ -17400,6 +17559,7 @@ declare namespace RectanglePrimitive {
17400
17559
  * @param [options.id = createGuid()] - 矢量数据id标识
17401
17560
  * @param [options.name = ''] - 矢量数据名称
17402
17561
  * @param [options.show = true] - 矢量数据是否显示
17562
+ * @param [options.availability] - 指定时间范围内显示该对象
17403
17563
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17404
17564
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17405
17565
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17431,6 +17591,7 @@ declare class RectanglePrimitive extends BasePolyPrimitive {
17431
17591
  id?: string | number;
17432
17592
  name?: string;
17433
17593
  show?: boolean;
17594
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17434
17595
  eventParent?: BaseClass | boolean;
17435
17596
  allowDrillPick?: boolean | ((...params: any[]) => any);
17436
17597
  flyTo?: boolean;
@@ -17535,6 +17696,7 @@ declare namespace ReflectionWater {
17535
17696
  * @param [options.id = createGuid()] - 矢量数据id标识
17536
17697
  * @param [options.name = ''] - 矢量数据名称
17537
17698
  * @param [options.show = true] - 矢量数据是否显示
17699
+ * @param [options.availability] - 指定时间范围内显示该对象
17538
17700
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17539
17701
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17540
17702
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17563,6 +17725,7 @@ declare class ReflectionWater extends PolygonPrimitive {
17563
17725
  id?: string | number;
17564
17726
  name?: string;
17565
17727
  show?: boolean;
17728
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17566
17729
  eventParent?: BaseClass | boolean;
17567
17730
  allowDrillPick?: boolean | ((...params: any[]) => any);
17568
17731
  flyTo?: boolean;
@@ -17599,6 +17762,7 @@ declare namespace Road {
17599
17762
  * @param [options.id = createGuid()] - 矢量数据id标识
17600
17763
  * @param [options.name = ''] - 矢量数据名称
17601
17764
  * @param [options.show = true] - 矢量数据是否显示
17765
+ * @param [options.availability] - 指定时间范围内显示该对象
17602
17766
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17603
17767
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17604
17768
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17612,6 +17776,7 @@ declare class Road extends DynamicRiver {
17612
17776
  id?: string | number;
17613
17777
  name?: string;
17614
17778
  show?: boolean;
17779
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17615
17780
  eventParent?: BaseClass | boolean;
17616
17781
  allowDrillPick?: boolean | ((...params: any[]) => any);
17617
17782
  flyTo?: boolean;
@@ -17623,7 +17788,7 @@ declare namespace ScrollWall {
17623
17788
  /**
17624
17789
  * 走马灯围墙效果 支持的样式信息
17625
17790
  * @property [diffHeight = 100] - 墙高
17626
- * @property [color = "#3388ff"] - 颜色
17791
+ * @property [color = "#ffffff"] - 颜色
17627
17792
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
17628
17793
  * @property [speed = 10] - 速度,值越大越快
17629
17794
  * @property [reverse = false] - 方向:true往上、false往下
@@ -17659,6 +17824,7 @@ declare namespace ScrollWall {
17659
17824
  * @param [options.id = createGuid()] - 矢量数据id标识
17660
17825
  * @param [options.name = ''] - 矢量数据名称
17661
17826
  * @param [options.show = true] - 矢量数据是否显示
17827
+ * @param [options.availability] - 指定时间范围内显示该对象
17662
17828
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17663
17829
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17664
17830
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17677,6 +17843,7 @@ declare class ScrollWall extends BasePolyPrimitive {
17677
17843
  id?: string | number;
17678
17844
  name?: string;
17679
17845
  show?: boolean;
17846
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17680
17847
  eventParent?: BaseClass | boolean;
17681
17848
  allowDrillPick?: boolean | ((...params: any[]) => any);
17682
17849
  flyTo?: boolean;
@@ -17700,7 +17867,7 @@ declare namespace ThickWall {
17700
17867
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
17701
17868
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
17702
17869
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
17703
- * @property [color = "#3388ff"] - 颜色
17870
+ * @property [color = "#ffffff"] - 颜色
17704
17871
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
17705
17872
  * @property [closure = false] - 是否闭合
17706
17873
  * @property [hasShadows = false] - 是否阴影
@@ -17755,6 +17922,7 @@ declare namespace ThickWall {
17755
17922
  * @param [options.id = createGuid()] - 矢量数据id标识
17756
17923
  * @param [options.name = ''] - 矢量数据名称
17757
17924
  * @param [options.show = true] - 矢量数据是否显示
17925
+ * @param [options.availability] - 指定时间范围内显示该对象
17758
17926
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17759
17927
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17760
17928
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17773,6 +17941,7 @@ declare class ThickWall extends BasePolyPrimitive {
17773
17941
  id?: string | number;
17774
17942
  name?: string;
17775
17943
  show?: boolean;
17944
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17776
17945
  eventParent?: BaseClass | boolean;
17777
17946
  allowDrillPick?: boolean | ((...params: any[]) => any);
17778
17947
  flyTo?: boolean;
@@ -17828,6 +17997,7 @@ declare namespace VideoPrimitive {
17828
17997
  * @param [options.id = createGuid()] - 矢量数据id标识
17829
17998
  * @param [options.name = ''] - 矢量数据名称
17830
17999
  * @param [options.show = true] - 矢量数据是否显示
18000
+ * @param [options.availability] - 指定时间范围内显示该对象
17831
18001
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17832
18002
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17833
18003
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -17858,6 +18028,7 @@ declare class VideoPrimitive extends BasePolyPrimitive {
17858
18028
  id?: string | number;
17859
18029
  name?: string;
17860
18030
  show?: boolean;
18031
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
17861
18032
  eventParent?: BaseClass | boolean;
17862
18033
  allowDrillPick?: boolean | ((...params: any[]) => any);
17863
18034
  flyTo?: boolean;
@@ -17898,7 +18069,7 @@ declare namespace WallPrimitive {
17898
18069
  * @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
17899
18070
  * @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
17900
18071
  * @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
17901
- * @property [color = "#3388ff"] - 颜色
18072
+ * @property [color = "#ffffff"] - 颜色
17902
18073
  * @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
17903
18074
  * @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
17904
18075
  * @property [closure = false] - 是否闭合
@@ -17973,6 +18144,7 @@ declare namespace WallPrimitive {
17973
18144
  * @param [options.id = createGuid()] - 矢量数据id标识
17974
18145
  * @param [options.name = ''] - 矢量数据名称
17975
18146
  * @param [options.show = true] - 矢量数据是否显示
18147
+ * @param [options.availability] - 指定时间范围内显示该对象
17976
18148
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
17977
18149
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
17978
18150
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -18003,6 +18175,7 @@ declare class WallPrimitive extends BasePolyPrimitive {
18003
18175
  id?: string | number;
18004
18176
  name?: string;
18005
18177
  show?: boolean;
18178
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
18006
18179
  eventParent?: BaseClass | boolean;
18007
18180
  allowDrillPick?: boolean | ((...params: any[]) => any);
18008
18181
  flyTo?: boolean;
@@ -18120,6 +18293,7 @@ declare namespace Water {
18120
18293
  * @param [options.id = createGuid()] - 矢量数据id标识
18121
18294
  * @param [options.name = ''] - 矢量数据名称
18122
18295
  * @param [options.show = true] - 矢量数据是否显示
18296
+ * @param [options.availability] - 指定时间范围内显示该对象
18123
18297
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
18124
18298
  * @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
18125
18299
  * @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
@@ -18147,6 +18321,7 @@ declare class Water extends PolygonPrimitive {
18147
18321
  id?: string | number;
18148
18322
  name?: string;
18149
18323
  show?: boolean;
18324
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
18150
18325
  eventParent?: BaseClass | boolean;
18151
18326
  allowDrillPick?: boolean | ((...params: any[]) => any);
18152
18327
  flyTo?: boolean;
@@ -20105,7 +20280,7 @@ declare class GraphicGroupLayer extends GroupLayer {
20105
20280
  * @param [options.maxPointNum] - 线面数据时限定的最大坐标个数
20106
20281
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
20107
20282
  * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
20108
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
20283
+ * @param [options.availability] - 指定时间范围内显示该对象
20109
20284
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
20110
20285
  * @returns 绘制创建完成的Promise,等价于success参数
20111
20286
  */
@@ -20118,7 +20293,7 @@ declare class GraphicGroupLayer extends GroupLayer {
20118
20293
  maxPointNum?: number;
20119
20294
  drawShow?: boolean;
20120
20295
  addHeight?: number;
20121
- availability?: Cesium.TimeIntervalCollection;
20296
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
20122
20297
  description?: Cesium.Property | string;
20123
20298
  }): Promise<BaseGraphic | any>;
20124
20299
  /**
@@ -20594,7 +20769,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
20594
20769
  * @param [options.validDrawPosition] - 外部自定义校验坐标,比如判断限定在指定区域内绘制。
20595
20770
  * @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
20596
20771
  * @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
20597
- * @param [options.availability] - 与该对象关联的可用性(如果有的话)。
20772
+ * @param [options.availability] - 指定时间范围内显示该对象
20598
20773
  * @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
20599
20774
  * @returns 绘制创建完成的Promise,等价于success参数
20600
20775
  */
@@ -20609,7 +20784,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
20609
20784
  validDrawPosition?: (...params: any[]) => any;
20610
20785
  drawShow?: boolean;
20611
20786
  addHeight?: number;
20612
- availability?: Cesium.TimeIntervalCollection;
20787
+ availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
20613
20788
  description?: Cesium.Property | string;
20614
20789
  }): Promise<BaseGraphic | any>;
20615
20790
  /**
@@ -26667,6 +26842,22 @@ declare class Map extends BaseClass {
26667
26842
  complete?: Cesium.Camera.FlightCompleteCallback;
26668
26843
  cancel?: Cesium.Camera.FlightCancelledCallback;
26669
26844
  }): Promise<boolean>;
26845
+ /**
26846
+ * 设置相机pitch值,保持地图中心位置不变。
26847
+ * @param heading - 方向角度值, 0-360
26848
+ * @param [options] - 具有以下属性的对象:
26849
+ * @param [options.pitch] - 俯仰角度值,绕垂直于地心的轴旋转角度, -90至90
26850
+ * @param [options.duration] - 飞行持续时间(秒)。如果省略,内部会根据飞行距离计算出理想的飞行时间。
26851
+ * @param [options.complete] - 飞行完成后要执行的函数。
26852
+ * @param [options.cancel] - 飞行取消时要执行的函数。
26853
+ * @returns 如果飞行成功则解析为true的承诺,如果当前未在场景中可视化目标或取消飞行,则为false的Promise
26854
+ */
26855
+ setHeading(heading: number, options?: {
26856
+ pitch?: number;
26857
+ duration?: number;
26858
+ complete?: Cesium.Camera.FlightCompleteCallback;
26859
+ cancel?: Cesium.Camera.FlightCancelledCallback;
26860
+ }): Promise<boolean>;
26670
26861
  /**
26671
26862
  * 停止视角定位等操作
26672
26863
  * @returns 当前对象本身,可以链式调用
@@ -27148,7 +27339,7 @@ declare class Map extends BaseClass {
27148
27339
  /**
27149
27340
  * 解除绑定指定类型事件监听器
27150
27341
  * @param [types] - 事件类型,未传值时解绑所有事件
27151
- * @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件
27342
+ * @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件,特殊说明:map.on监听的Cesium相关原生事件时必须传入该参数
27152
27343
  * @param [context] - 侦听器的上下文(this关键字将指向的对象)。
27153
27344
  * @returns 当前对象本身,可以链式调用
27154
27345
  */
@@ -28949,12 +29140,13 @@ declare class EchartsLayer extends BaseLayer {
28949
29140
  * @param [options.style.type] - 渲染类型,支持:"image":ImageLayer图片展示, "graphic":普通RectanglePrimitive矢量矩形展示, "arc":曲面RectanglePrimitive矢量矩形展示
28950
29141
  * @param [options.style.opacity = 1] - 透明度
28951
29142
  * @param [options.style.height = 0] - 高度,相对于椭球面的高度。
29143
+ * @param [options.style.clampToGround = false] - 是否贴地
29144
+ * @param [options.style.多个参数] - rectangle矩形支持的样式, tip: 是指支持多个其他参数
28952
29145
  * @param [options.style.arc = false] - 是否显示曲面热力图,同 type:"arc"
28953
29146
  * @param [options.style.arcRadiusScale = 1.5] - 曲面热力图时,radius扩大比例
28954
29147
  * @param [options.style.arcBlurScale = 1.5] - 曲面热力图时,blur扩大比例
28955
29148
  * @param [options.style.arcDirection = 1] - 曲面热力图时,凹陷的方向,1向上,-1向下,0双面
28956
29149
  * @param [options.style.diffHeight] - 曲面热力图时,曲面的起伏差值高,默认根据数据范围的比例自动计算。
28957
- * @param [options.style.多个参数] - rectangle矩形支持的样式
28958
29150
  * @param [options.maxCanvasSize = 5000] - Canvas最大尺寸(单位:像素),调大精度更高,但过大容易内存溢出
28959
29151
  * @param [options.minCanvasSize = 700] - Canvas最小尺寸(单位:像素)
28960
29152
  * @param [options.delayTime = 2] - 显示数据时的过渡动画时长(单位:秒)
@@ -28991,16 +29183,17 @@ declare class HeatLayer extends BaseLayer {
28991
29183
  radius?: number;
28992
29184
  gradient?: any;
28993
29185
  };
28994
- style?: {
29186
+ style?: any | {
28995
29187
  type?: string;
28996
29188
  opacity?: number;
28997
29189
  height?: number;
29190
+ clampToGround?: boolean;
29191
+ 多个参数?: any;
28998
29192
  arc?: boolean;
28999
29193
  arcRadiusScale?: number;
29000
29194
  arcBlurScale?: number;
29001
29195
  arcDirection?: number;
29002
29196
  diffHeight?: number;
29003
- 多个参数?: RectanglePrimitive.StyleOptions | any;
29004
29197
  };
29005
29198
  maxCanvasSize?: number;
29006
29199
  minCanvasSize?: number;
@@ -29954,6 +30147,13 @@ declare namespace Satellite {
29954
30147
  * @param [options.cone] - 设置是否显示 卫星视锥体 和对应的样式
29955
30148
  * @param [options.path] - 设置是否显示 卫星轨迹路线 和对应的样式,属性还包含:<br />
29956
30149
  * // * @param {boolean} [options.path.closure=false] 是否闭合轨道圆
30150
+ * @param [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
30151
+ * @param [highlight.model] - 设置是否显示 gltf卫星模型 和对应的样式
30152
+ * @param [highlight.label] - 设置是否显示 文本 和对应的样式
30153
+ * @param [highlight.billboard] - 设置是否显示 图标点 和对应的样式
30154
+ * @param [highlight.point] - 设置是否显示 像素点 和对应的样式
30155
+ * @param [highlight.cone] - 设置是否显示 卫星视锥体 和对应的样式
30156
+ * @param [highlight.path] - 设置是否显示 卫星轨迹路线 和对应的样式
29957
30157
  * @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
29958
30158
  * @param [options.id = createGuid()] - 矢量数据id标识
29959
30159
  * @param [options.name = ''] - 矢量数据名称
@@ -29978,6 +30178,13 @@ declare class Satellite extends Route {
29978
30178
  id?: string | number;
29979
30179
  name?: string;
29980
30180
  show?: boolean;
30181
+ }, highlight?: {
30182
+ model?: ModelEntity.StyleOptions | any;
30183
+ label?: LabelEntity.StyleOptions | any;
30184
+ billboard?: BillboardEntity.StyleOptions | any;
30185
+ point?: PointEntity.StyleOptions | any;
30186
+ cone?: SatelliteSensor.StyleOptions | any | any;
30187
+ path?: PolylineEntity.StyleOptions | any;
29981
30188
  });
29982
30189
  /**
29983
30190
  * 卫星TLE算法类对象
@@ -31946,8 +32153,8 @@ declare namespace Measure {
31946
32153
  * @property change - 测量值变化了
31947
32154
  * @property start - 异步测量中,开始测量
31948
32155
  * @property end - 异步测量中,完成了测量后
31949
- * @property add - 添加对象
31950
- * @property remove - 移除对象
32156
+ * @property addGraphic - 添加了矢量对象
32157
+ * @property removeGraphic - 移除了矢量对象
31951
32158
  * @property show - 显示了对象
31952
32159
  * @property hide - 隐藏了对象
31953
32160
  * @property click - 左键单击 鼠标事件
@@ -31978,8 +32185,8 @@ declare namespace Measure {
31978
32185
  change: string;
31979
32186
  start: string;
31980
32187
  end: string;
31981
- add: string;
31982
- remove: string;
32188
+ addGraphic: string;
32189
+ removeGraphic: string;
31983
32190
  show: string;
31984
32191
  hide: string;
31985
32192
  click: string;
@@ -32976,6 +33183,14 @@ declare class ContourLine extends TerrainEditBase {
32976
33183
  * 等高线 颜色
32977
33184
  */
32978
33185
  color: Cesium.Color | string;
33186
+ /**
33187
+ * 地表渲染配色方案中的 最低海拔高度
33188
+ */
33189
+ minHeight: number;
33190
+ /**
33191
+ * 地表渲染配色方案中的 最高海拔高度
33192
+ */
33193
+ maxHeight: number;
32979
33194
  /**
32980
33195
  * 是否显示区域外的地图
32981
33196
  */
@@ -33546,7 +33761,7 @@ declare class TerrainUplift extends TerrainEditBase {
33546
33761
  * @param [options.positions] - 限高区域坐标数组
33547
33762
  * @param [options.height] - 限高高度(单位米),相对于bottomHeight模型地面的海拔高度的相对高度。
33548
33763
  * @param [options.bottomHeight] - 模型地面的海拔高度(单位米)
33549
- * @param [options.color = "#3388ff"] - 颜色
33764
+ * @param [options.color = "#ffffff"] - 颜色
33550
33765
  * @param [options.id = createGuid()] - 对象的id标识
33551
33766
  * @param [options.enabled = true] - 对象的启用状态
33552
33767
  * @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
@@ -35623,6 +35838,14 @@ declare namespace PointUtil {
35623
35838
  * @returns 反射向量
35624
35839
  */
35625
35840
  function getReflectVector(view: Cesium.Cartesian3, normal: Cesium.Cartesian3): Cesium.Cartesian3;
35841
+ /**
35842
+ * 获取属性坐标对应时间的index和坐标值
35843
+ * @param property - 属性坐标
35844
+ * @param time - 指定时间
35845
+ * @param [result] - 坐标对象
35846
+ * @returns 返回index和坐标值 , 示例:{ position: xx, index:xx }
35847
+ */
35848
+ function getPropertyIndex(property: Cesium.SampledPositionProperty, time: Cesium.JulianDate, result?: Cesium.Cartesian3): any;
35626
35849
  }
35627
35850
 
35628
35851
  /**
@@ -36296,6 +36519,25 @@ declare namespace Util {
36296
36519
  opacity?: number;
36297
36520
  randomColor?: boolean;
36298
36521
  }, defval?: Cesium.Color): Cesium.Color;
36522
+ /**
36523
+ * 获取JulianDate时间
36524
+ * @param currTime - 指定时间。当为String时,可以传入 '2021-01-01 12:13:00';
36525
+ * @returns JulianDate时间
36526
+ */
36527
+ function getJulianDate(currTime: Cesium.JulianDate | Date | string): Cesium.JulianDate;
36528
+ /**
36529
+ * 指定时间范围内显示对象所用到的TimeIntervalCollection对象
36530
+ * @example
36531
+ * graphic.availability = mars3d.Util.getAvailability([
36532
+ * { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
36533
+ * { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
36534
+ * ])
36535
+ *
36536
+ * graphic.availability = mars3d.Util.getAvailability({ start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false })
36537
+ * @param availability - 指定时间范围
36538
+ * @returns JulianDate时间
36539
+ */
36540
+ function getAvailability(availability: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any): Cesium.TimeIntervalCollection;
36299
36541
  /**
36300
36542
  * 取属性值,简化Cesium内的属性,去掉getValue等,取最简的键值对。
36301
36543
  * 方便popup、tooltip等构造方法使用