mars3d 3.6.1 → 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.css +2 -2
- package/dist/mars3d.d.ts +406 -153
- package/dist/mars3d.js +3 -3
- package/package.json +1 -1
package/dist/mars3d.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Mars3D三维可视化平台 mars3d
|
|
4
4
|
*
|
|
5
|
-
* 版本信息:v3.6.
|
|
6
|
-
* 编译日期:2023-08-
|
|
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
|
|
1107
|
+
tileset,
|
|
1108
|
+
i3s,
|
|
1108
1109
|
czmGeojson,
|
|
1109
1110
|
kml,
|
|
1110
1111
|
czml,
|
|
@@ -1854,17 +1855,18 @@ declare class Compass extends BaseControl {
|
|
|
1854
1855
|
/**
|
|
1855
1856
|
* 时钟仪表控制 控件 (Cesium原生)
|
|
1856
1857
|
* @param [options] - 参数对象,包括以下:
|
|
1857
|
-
* @param [ticks = [0.1, 0.25, 0.5, 1.0, 2.0, 5.0, 10.0, 15.0, 30.0, 60.0, 120.0, 300.0, 600.0, 900.0, 1800.0, 3600.0]] - 可选的步长
|
|
1858
|
+
* @param [options.ticks = [0.1, 0.25, 0.5, 1.0, 2.0, 5.0, 10.0, 15.0, 30.0, 60.0, 120.0, 300.0, 600.0, 900.0, 1800.0, 3600.0]] - 可选的步长
|
|
1858
1859
|
* @param [options.id = createGuid()] - 对象的id标识
|
|
1859
1860
|
* @param [options.enabled = true] - 对象的启用状态
|
|
1860
1861
|
* @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.container
|
|
1861
1862
|
*/
|
|
1862
1863
|
declare class Animation extends BaseCzmControl {
|
|
1863
1864
|
constructor(options?: {
|
|
1865
|
+
ticks?: number[];
|
|
1864
1866
|
id?: string | number;
|
|
1865
1867
|
enabled?: boolean;
|
|
1866
1868
|
parentContainer?: HTMLElement;
|
|
1867
|
-
}
|
|
1869
|
+
});
|
|
1868
1870
|
}
|
|
1869
1871
|
|
|
1870
1872
|
/**
|
|
@@ -2001,12 +2003,14 @@ declare class ProjectionPicker extends BaseCzmControl {
|
|
|
2001
2003
|
/**
|
|
2002
2004
|
* 二三维切换按钮 控件 (Cesium原生)
|
|
2003
2005
|
* @param [options] - 参数对象,包括以下:
|
|
2006
|
+
* @param [options.duration = 0] - 切换时动画的秒数
|
|
2004
2007
|
* @param [options.id = createGuid()] - 对象的id标识
|
|
2005
2008
|
* @param [options.enabled = true] - 对象的启用状态
|
|
2006
2009
|
* @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
|
|
2007
2010
|
*/
|
|
2008
2011
|
declare class SceneModePicker extends BaseCzmControl {
|
|
2009
2012
|
constructor(options?: {
|
|
2013
|
+
duration?: number;
|
|
2010
2014
|
id?: string | number;
|
|
2011
2015
|
enabled?: boolean;
|
|
2012
2016
|
parentContainer?: HTMLElement;
|
|
@@ -2035,7 +2039,7 @@ declare class Timeline extends BaseCzmControl {
|
|
|
2035
2039
|
constructor(options?: {
|
|
2036
2040
|
zoom?: boolean;
|
|
2037
2041
|
maxSpan?: number;
|
|
2038
|
-
style?: {
|
|
2042
|
+
style?: any | {
|
|
2039
2043
|
top?: string;
|
|
2040
2044
|
bottom?: string;
|
|
2041
2045
|
left?: string;
|
|
@@ -2180,7 +2184,7 @@ declare class LocationBar extends BaseControl {
|
|
|
2180
2184
|
latDecimal?: number;
|
|
2181
2185
|
crs?: string | CRS | boolean;
|
|
2182
2186
|
crsDecimal?: number;
|
|
2183
|
-
style?: {
|
|
2187
|
+
style?: any | {
|
|
2184
2188
|
top?: string;
|
|
2185
2189
|
bottom?: string;
|
|
2186
2190
|
left?: string;
|
|
@@ -2362,7 +2366,7 @@ declare class OverviewMap extends BaseControl {
|
|
|
2362
2366
|
scene?: Map.sceneOptions;
|
|
2363
2367
|
control?: Map.controlOptions;
|
|
2364
2368
|
rectangle?: RectangleEntity.StyleOptions | any;
|
|
2365
|
-
style?: {
|
|
2369
|
+
style?: any | {
|
|
2366
2370
|
top?: string;
|
|
2367
2371
|
bottom?: string;
|
|
2368
2372
|
left?: string;
|
|
@@ -2513,7 +2517,7 @@ declare class BaseClass {
|
|
|
2513
2517
|
/**
|
|
2514
2518
|
* 解除绑定指定类型事件监听器
|
|
2515
2519
|
* @param [types] - 事件类型,未传值时解绑所有事件
|
|
2516
|
-
* @param [fn] -
|
|
2520
|
+
* @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件,特殊说明:map.on监听的Cesium相关原生事件时必须传入该参数
|
|
2517
2521
|
* @param [context] - 侦听器的上下文(this关键字将指向的对象)。
|
|
2518
2522
|
* @returns 当前对象本身,可以链式调用
|
|
2519
2523
|
*/
|
|
@@ -2705,7 +2709,7 @@ declare class BaseThing extends BaseClass {
|
|
|
2705
2709
|
* })
|
|
2706
2710
|
* let color = colorRamp.getColor(rate)
|
|
2707
2711
|
* @param [options] - 参数对象,包括以下:
|
|
2708
|
-
* @param options.colors -
|
|
2712
|
+
* @param options.colors - 色带的颜色数组
|
|
2709
2713
|
* @param options.steps - 色带对应的数值数组
|
|
2710
2714
|
*/
|
|
2711
2715
|
declare class ColorRamp {
|
|
@@ -3829,6 +3833,38 @@ declare class BaseGraphic extends BaseClass {
|
|
|
3829
3833
|
* 显示隐藏状态
|
|
3830
3834
|
*/
|
|
3831
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;
|
|
3832
3868
|
/**
|
|
3833
3869
|
* 名称
|
|
3834
3870
|
*/
|
|
@@ -4034,7 +4070,7 @@ declare class BaseGraphic extends BaseClass {
|
|
|
4034
4070
|
* @param [event] - 用于抛出事件时的相关额外属性
|
|
4035
4071
|
* @returns 当前对象本身,可以链式调用
|
|
4036
4072
|
*/
|
|
4037
|
-
openPopup(position?: LngLatPoint | Cesium.Cartesian3 | number[], event?: any): BaseGraphic | any;
|
|
4073
|
+
openPopup(position?: LngLatPoint | Cesium.Cartesian3 | number[] | any, event?: any): BaseGraphic | any;
|
|
4038
4074
|
/**
|
|
4039
4075
|
* 关闭弹窗
|
|
4040
4076
|
* @returns 当前对象本身,可以链式调用
|
|
@@ -4218,7 +4254,7 @@ declare class BaseCombine extends BasePrimitive {
|
|
|
4218
4254
|
/**
|
|
4219
4255
|
* 更新颜色, 只对纯色材质有效,其他材质无法单独更新,需要setStle方法调用(全部更新渲染)。
|
|
4220
4256
|
* @param style - 样式信息
|
|
4221
|
-
* @param [style.color = "#
|
|
4257
|
+
* @param [style.color = "#ffffff"] - 颜色
|
|
4222
4258
|
* @param [style.opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
4223
4259
|
* @param [index] - 更新的instances对象index值,为空时更新所有对象。
|
|
4224
4260
|
* @returns 空
|
|
@@ -4259,6 +4295,7 @@ declare class BaseCombine extends BasePrimitive {
|
|
|
4259
4295
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4260
4296
|
* @param [options.name = ''] - 矢量数据名称
|
|
4261
4297
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4298
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4262
4299
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4263
4300
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4264
4301
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4295,6 +4332,7 @@ declare class BasePointCombine extends BasePolyCombine {
|
|
|
4295
4332
|
id?: string | number;
|
|
4296
4333
|
name?: string;
|
|
4297
4334
|
show?: boolean;
|
|
4335
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4298
4336
|
eventParent?: BaseClass | boolean;
|
|
4299
4337
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4300
4338
|
flyTo?: boolean;
|
|
@@ -4339,6 +4377,7 @@ declare class BasePointCombine extends BasePolyCombine {
|
|
|
4339
4377
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4340
4378
|
* @param [options.name = ''] - 矢量数据名称
|
|
4341
4379
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4380
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4342
4381
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4343
4382
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4344
4383
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4375,6 +4414,7 @@ declare class BasePolyCombine extends BaseCombine {
|
|
|
4375
4414
|
id?: string | number;
|
|
4376
4415
|
name?: string;
|
|
4377
4416
|
show?: boolean;
|
|
4417
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4378
4418
|
eventParent?: BaseClass | boolean;
|
|
4379
4419
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4380
4420
|
flyTo?: boolean;
|
|
@@ -4436,6 +4476,7 @@ declare class BasePolyCombine extends BaseCombine {
|
|
|
4436
4476
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4437
4477
|
* @param [options.name = ''] - 矢量数据名称
|
|
4438
4478
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4479
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4439
4480
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4440
4481
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4441
4482
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4472,6 +4513,7 @@ declare class BoxCombine extends BasePointCombine {
|
|
|
4472
4513
|
id?: string | number;
|
|
4473
4514
|
name?: string;
|
|
4474
4515
|
show?: boolean;
|
|
4516
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4475
4517
|
eventParent?: BaseClass | boolean;
|
|
4476
4518
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4477
4519
|
flyTo?: boolean;
|
|
@@ -4509,6 +4551,7 @@ declare class BoxCombine extends BasePointCombine {
|
|
|
4509
4551
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4510
4552
|
* @param [options.name = ''] - 矢量数据名称
|
|
4511
4553
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4554
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4512
4555
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4513
4556
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4514
4557
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4545,6 +4588,7 @@ declare class CircleCombine extends BasePointCombine {
|
|
|
4545
4588
|
id?: string | number;
|
|
4546
4589
|
name?: string;
|
|
4547
4590
|
show?: boolean;
|
|
4591
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4548
4592
|
eventParent?: BaseClass | boolean;
|
|
4549
4593
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4550
4594
|
flyTo?: boolean;
|
|
@@ -4582,6 +4626,7 @@ declare class CircleCombine extends BasePointCombine {
|
|
|
4582
4626
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4583
4627
|
* @param [options.name = ''] - 矢量数据名称
|
|
4584
4628
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4629
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4585
4630
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4586
4631
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4587
4632
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4618,6 +4663,7 @@ declare class CorridorCombine extends BasePolyCombine {
|
|
|
4618
4663
|
id?: string | number;
|
|
4619
4664
|
name?: string;
|
|
4620
4665
|
show?: boolean;
|
|
4666
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4621
4667
|
eventParent?: BaseClass | boolean;
|
|
4622
4668
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4623
4669
|
flyTo?: boolean;
|
|
@@ -4655,6 +4701,7 @@ declare class CorridorCombine extends BasePolyCombine {
|
|
|
4655
4701
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4656
4702
|
* @param [options.name = ''] - 矢量数据名称
|
|
4657
4703
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4704
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4658
4705
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4659
4706
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4660
4707
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4691,6 +4738,7 @@ declare class CylinderCombine extends BasePointCombine {
|
|
|
4691
4738
|
id?: string | number;
|
|
4692
4739
|
name?: string;
|
|
4693
4740
|
show?: boolean;
|
|
4741
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4694
4742
|
eventParent?: BaseClass | boolean;
|
|
4695
4743
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4696
4744
|
flyTo?: boolean;
|
|
@@ -4728,6 +4776,7 @@ declare class CylinderCombine extends BasePointCombine {
|
|
|
4728
4776
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4729
4777
|
* @param [options.name = ''] - 矢量数据名称
|
|
4730
4778
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4779
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4731
4780
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4732
4781
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4733
4782
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4764,6 +4813,7 @@ declare class EllipsoidCombine extends BasePointCombine {
|
|
|
4764
4813
|
id?: string | number;
|
|
4765
4814
|
name?: string;
|
|
4766
4815
|
show?: boolean;
|
|
4816
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4767
4817
|
eventParent?: BaseClass | boolean;
|
|
4768
4818
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4769
4819
|
flyTo?: boolean;
|
|
@@ -4801,6 +4851,7 @@ declare namespace FlatBillboard {
|
|
|
4801
4851
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4802
4852
|
* @param [options.name = ''] - 矢量数据名称
|
|
4803
4853
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4854
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4804
4855
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4805
4856
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4806
4857
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4820,6 +4871,7 @@ declare class FlatBillboard extends BaseCombine {
|
|
|
4820
4871
|
id?: string | number;
|
|
4821
4872
|
name?: string;
|
|
4822
4873
|
show?: boolean;
|
|
4874
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4823
4875
|
eventParent?: BaseClass | boolean;
|
|
4824
4876
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4825
4877
|
flyTo?: boolean;
|
|
@@ -4878,6 +4930,7 @@ declare class FlatBillboard extends BaseCombine {
|
|
|
4878
4930
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4879
4931
|
* @param [options.name = ''] - 矢量数据名称
|
|
4880
4932
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4933
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4881
4934
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4882
4935
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4883
4936
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4914,6 +4967,7 @@ declare class FrustumCombine extends BasePointCombine {
|
|
|
4914
4967
|
id?: string | number;
|
|
4915
4968
|
name?: string;
|
|
4916
4969
|
show?: boolean;
|
|
4970
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4917
4971
|
eventParent?: BaseClass | boolean;
|
|
4918
4972
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4919
4973
|
flyTo?: boolean;
|
|
@@ -4951,6 +5005,7 @@ declare class FrustumCombine extends BasePointCombine {
|
|
|
4951
5005
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4952
5006
|
* @param [options.name = ''] - 矢量数据名称
|
|
4953
5007
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5008
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4954
5009
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4955
5010
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4956
5011
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4987,6 +5042,7 @@ declare class PlaneCombine extends BasePointCombine {
|
|
|
4987
5042
|
id?: string | number;
|
|
4988
5043
|
name?: string;
|
|
4989
5044
|
show?: boolean;
|
|
5045
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4990
5046
|
eventParent?: BaseClass | boolean;
|
|
4991
5047
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4992
5048
|
flyTo?: boolean;
|
|
@@ -5024,6 +5080,7 @@ declare class PlaneCombine extends BasePointCombine {
|
|
|
5024
5080
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5025
5081
|
* @param [options.name = ''] - 矢量数据名称
|
|
5026
5082
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5083
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5027
5084
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5028
5085
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5029
5086
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5058,6 +5115,7 @@ declare class PolygonCombine extends BasePolyCombine {
|
|
|
5058
5115
|
id?: string | number;
|
|
5059
5116
|
name?: string;
|
|
5060
5117
|
show?: boolean;
|
|
5118
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5061
5119
|
eventParent?: BaseClass | boolean;
|
|
5062
5120
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5063
5121
|
flyTo?: boolean;
|
|
@@ -5095,6 +5153,7 @@ declare class PolygonCombine extends BasePolyCombine {
|
|
|
5095
5153
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5096
5154
|
* @param [options.name = ''] - 矢量数据名称
|
|
5097
5155
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5156
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5098
5157
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5099
5158
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5100
5159
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5131,6 +5190,7 @@ declare class PolylineCombine extends BasePolyCombine {
|
|
|
5131
5190
|
id?: string | number;
|
|
5132
5191
|
name?: string;
|
|
5133
5192
|
show?: boolean;
|
|
5193
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5134
5194
|
eventParent?: BaseClass | boolean;
|
|
5135
5195
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5136
5196
|
flyTo?: boolean;
|
|
@@ -5168,6 +5228,7 @@ declare class PolylineCombine extends BasePolyCombine {
|
|
|
5168
5228
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5169
5229
|
* @param [options.name = ''] - 矢量数据名称
|
|
5170
5230
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5231
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5171
5232
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5172
5233
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5173
5234
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5204,6 +5265,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
|
|
|
5204
5265
|
id?: string | number;
|
|
5205
5266
|
name?: string;
|
|
5206
5267
|
show?: boolean;
|
|
5268
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5207
5269
|
eventParent?: BaseClass | boolean;
|
|
5208
5270
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5209
5271
|
flyTo?: boolean;
|
|
@@ -5241,6 +5303,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
|
|
|
5241
5303
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5242
5304
|
* @param [options.name = ''] - 矢量数据名称
|
|
5243
5305
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5306
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5244
5307
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5245
5308
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5246
5309
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5277,6 +5340,7 @@ declare class RectangleCombine extends BasePolyCombine {
|
|
|
5277
5340
|
id?: string | number;
|
|
5278
5341
|
name?: string;
|
|
5279
5342
|
show?: boolean;
|
|
5343
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5280
5344
|
eventParent?: BaseClass | boolean;
|
|
5281
5345
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5282
5346
|
flyTo?: boolean;
|
|
@@ -5314,6 +5378,7 @@ declare class RectangleCombine extends BasePolyCombine {
|
|
|
5314
5378
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5315
5379
|
* @param [options.name = ''] - 矢量数据名称
|
|
5316
5380
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5381
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5317
5382
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5318
5383
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5319
5384
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5350,6 +5415,7 @@ declare class WallCombine extends BasePolyCombine {
|
|
|
5350
5415
|
id?: string | number;
|
|
5351
5416
|
name?: string;
|
|
5352
5417
|
show?: boolean;
|
|
5418
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5353
5419
|
eventParent?: BaseClass | boolean;
|
|
5354
5420
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5355
5421
|
flyTo?: boolean;
|
|
@@ -5385,6 +5451,7 @@ declare class WallCombine extends BasePolyCombine {
|
|
|
5385
5451
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5386
5452
|
* @param [options.name = ''] - 矢量数据名称
|
|
5387
5453
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5454
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5388
5455
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5389
5456
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5390
5457
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5418,6 +5485,7 @@ declare class WaterCombine extends PolygonCombine {
|
|
|
5418
5485
|
id?: string | number;
|
|
5419
5486
|
name?: string;
|
|
5420
5487
|
show?: boolean;
|
|
5488
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5421
5489
|
eventParent?: BaseClass | boolean;
|
|
5422
5490
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5423
5491
|
flyTo?: boolean;
|
|
@@ -5586,6 +5654,16 @@ declare class ConeVisibility extends PointVisibility {
|
|
|
5586
5654
|
* @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
|
|
5587
5655
|
* // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
|
|
5588
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] - 使用 墙体 对象,及其对应的样式
|
|
5589
5667
|
* @param [options.orientation] - 自定义实体方向, 默认内部根据轨迹自动的
|
|
5590
5668
|
* @param [options.fixedFrameTransform = Cesium.Transforms.eastNorthUpToFixedFrame] - 参考系
|
|
5591
5669
|
* @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
|
|
@@ -5686,6 +5764,16 @@ declare class FixedRoute extends Route {
|
|
|
5686
5764
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5687
5765
|
flyTo?: boolean;
|
|
5688
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;
|
|
5689
5777
|
});
|
|
5690
5778
|
/**
|
|
5691
5779
|
* 开始时间
|
|
@@ -6092,6 +6180,16 @@ declare namespace Route {
|
|
|
6092
6180
|
* @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
|
|
6093
6181
|
* // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
|
|
6094
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] - 使用 墙体 对象,及其对应的样式
|
|
6095
6193
|
* @param [options.orientation] - 自定义实体方向, 默认内部根据轨迹自动的
|
|
6096
6194
|
* @param [options.fixedFrameTransform = Cesium.Transforms.eastNorthUpToFixedFrame] - 参考系
|
|
6097
6195
|
* @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
|
|
@@ -6179,6 +6277,16 @@ declare class Route extends BasePointPrimitive {
|
|
|
6179
6277
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
6180
6278
|
flyTo?: boolean;
|
|
6181
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;
|
|
6182
6290
|
});
|
|
6183
6291
|
/**
|
|
6184
6292
|
* 时序动态坐标对象
|
|
@@ -6978,6 +7086,7 @@ declare namespace DivBoderLabel {
|
|
|
6978
7086
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
6979
7087
|
* @param [options.name = ''] - 矢量数据名称
|
|
6980
7088
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7089
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
6981
7090
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
6982
7091
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
6983
7092
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7003,6 +7112,7 @@ declare class DivBoderLabel extends DivGraphic {
|
|
|
7003
7112
|
id?: string | number;
|
|
7004
7113
|
name?: string;
|
|
7005
7114
|
show?: boolean;
|
|
7115
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7006
7116
|
eventParent?: BaseClass | boolean;
|
|
7007
7117
|
flyTo?: boolean;
|
|
7008
7118
|
flyToOptions?: any;
|
|
@@ -7095,6 +7205,7 @@ declare namespace DivGraphic {
|
|
|
7095
7205
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7096
7206
|
* @param [options.name = ''] - 矢量数据名称
|
|
7097
7207
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7208
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7098
7209
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
7099
7210
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
7100
7211
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7128,6 +7239,7 @@ declare class DivGraphic extends BaseGraphic {
|
|
|
7128
7239
|
id?: string | number;
|
|
7129
7240
|
name?: string;
|
|
7130
7241
|
show?: boolean;
|
|
7242
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7131
7243
|
eventParent?: BaseClass | boolean;
|
|
7132
7244
|
flyTo?: boolean;
|
|
7133
7245
|
flyToOptions?: any;
|
|
@@ -7372,6 +7484,7 @@ declare namespace DivLightPoint {
|
|
|
7372
7484
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7373
7485
|
* @param [options.name = ''] - 矢量数据名称
|
|
7374
7486
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7487
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7375
7488
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
7376
7489
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
7377
7490
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7397,6 +7510,7 @@ declare class DivLightPoint extends DivGraphic {
|
|
|
7397
7510
|
id?: string | number;
|
|
7398
7511
|
name?: string;
|
|
7399
7512
|
show?: boolean;
|
|
7513
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7400
7514
|
eventParent?: BaseClass | boolean;
|
|
7401
7515
|
flyTo?: boolean;
|
|
7402
7516
|
flyToOptions?: any;
|
|
@@ -7485,6 +7599,7 @@ declare namespace DivUpLabel {
|
|
|
7485
7599
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7486
7600
|
* @param [options.name = ''] - 矢量数据名称
|
|
7487
7601
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7602
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7488
7603
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
7489
7604
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
7490
7605
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7510,6 +7625,7 @@ declare class DivUpLabel extends DivGraphic {
|
|
|
7510
7625
|
id?: string | number;
|
|
7511
7626
|
name?: string;
|
|
7512
7627
|
show?: boolean;
|
|
7628
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7513
7629
|
eventParent?: BaseClass | boolean;
|
|
7514
7630
|
flyTo?: boolean;
|
|
7515
7631
|
flyToOptions?: any;
|
|
@@ -7637,6 +7753,7 @@ declare namespace Popup {
|
|
|
7637
7753
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7638
7754
|
* @param [options.name = ''] - 矢量数据名称
|
|
7639
7755
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7756
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7640
7757
|
*/
|
|
7641
7758
|
declare class Popup extends DivGraphic {
|
|
7642
7759
|
constructor(options: {
|
|
@@ -7655,6 +7772,7 @@ declare class Popup extends DivGraphic {
|
|
|
7655
7772
|
id?: string | number;
|
|
7656
7773
|
name?: string;
|
|
7657
7774
|
show?: boolean;
|
|
7775
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7658
7776
|
});
|
|
7659
7777
|
/**
|
|
7660
7778
|
* 关联的触发对象
|
|
@@ -7741,6 +7859,7 @@ declare namespace Tooltip {
|
|
|
7741
7859
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7742
7860
|
* @param [options.name = ''] - 矢量数据名称
|
|
7743
7861
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7862
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7744
7863
|
*/
|
|
7745
7864
|
declare class Tooltip extends Popup {
|
|
7746
7865
|
constructor(options: {
|
|
@@ -7756,6 +7875,7 @@ declare class Tooltip extends Popup {
|
|
|
7756
7875
|
id?: string | number;
|
|
7757
7876
|
name?: string;
|
|
7758
7877
|
show?: boolean;
|
|
7878
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7759
7879
|
});
|
|
7760
7880
|
}
|
|
7761
7881
|
|
|
@@ -7766,7 +7886,7 @@ declare class Tooltip extends Popup {
|
|
|
7766
7886
|
* @param options.positions - 【线面状(多点)】矢量数据时的坐标位置,具体看子类实现
|
|
7767
7887
|
* @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
|
|
7768
7888
|
* @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性
|
|
7769
|
-
* @param [options.availability] -
|
|
7889
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7770
7890
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
7771
7891
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
7772
7892
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -7790,7 +7910,7 @@ declare class BaseEntity extends BaseGraphic {
|
|
|
7790
7910
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
|
|
7791
7911
|
style: any;
|
|
7792
7912
|
attr?: any;
|
|
7793
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
7913
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7794
7914
|
description?: Cesium.Property | string;
|
|
7795
7915
|
viewFrom?: Cesium.Property;
|
|
7796
7916
|
parent?: Cesium.Entity;
|
|
@@ -7828,14 +7948,6 @@ declare class BaseEntity extends BaseGraphic {
|
|
|
7828
7948
|
* 是否正在编辑状态
|
|
7829
7949
|
*/
|
|
7830
7950
|
readonly isEditing: boolean;
|
|
7831
|
-
/**
|
|
7832
|
-
* 与该对象关联的可用性,可以控制在某些时间段内展示对象
|
|
7833
|
-
* @example
|
|
7834
|
-
* const startTime = Cesium.JulianDate.addSeconds(map.clock.currentTime, 5, new Cesium.JulianDate())
|
|
7835
|
-
* const stopTime = Cesium.JulianDate.addSeconds(map.clock.currentTime, 15, new Cesium.JulianDate())
|
|
7836
|
-
* graphic.availability = new Cesium.TimeIntervalCollection([new Cesium.TimeInterval({ start: startTime, stop: stopTime })])
|
|
7837
|
-
*/
|
|
7838
|
-
availability: Cesium.TimeIntervalCollection;
|
|
7839
7951
|
/**
|
|
7840
7952
|
* 重新渲染对象
|
|
7841
7953
|
* @returns 无
|
|
@@ -7928,7 +8040,7 @@ declare class BaseEntity extends BaseGraphic {
|
|
|
7928
8040
|
* @param [options.orientation] - 指定实体方向的属性。
|
|
7929
8041
|
* @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
|
|
7930
8042
|
* @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
|
|
7931
|
-
* @param [options.availability] -
|
|
8043
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7932
8044
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
7933
8045
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
7934
8046
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -7964,7 +8076,7 @@ declare class BasePointEntity extends BaseEntity {
|
|
|
7964
8076
|
orientation?: Cesium.Property;
|
|
7965
8077
|
style: any;
|
|
7966
8078
|
attr?: any;
|
|
7967
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8079
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7968
8080
|
description?: Cesium.Property | string;
|
|
7969
8081
|
viewFrom?: Cesium.Property;
|
|
7970
8082
|
parent?: Cesium.Entity;
|
|
@@ -8110,7 +8222,7 @@ declare class BasePointEntity extends BaseEntity {
|
|
|
8110
8222
|
* @param options.positions - 坐标位置
|
|
8111
8223
|
* @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
|
|
8112
8224
|
* @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
|
|
8113
|
-
* @param [options.availability] -
|
|
8225
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8114
8226
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8115
8227
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8116
8228
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8141,7 +8253,7 @@ declare class BasePolyEntity extends BaseEntity {
|
|
|
8141
8253
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
8142
8254
|
style: any;
|
|
8143
8255
|
attr?: any;
|
|
8144
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8256
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8145
8257
|
description?: Cesium.Property | string;
|
|
8146
8258
|
viewFrom?: Cesium.Property;
|
|
8147
8259
|
parent?: Cesium.Entity;
|
|
@@ -8339,7 +8451,7 @@ declare namespace BillboardEntity {
|
|
|
8339
8451
|
* @param options.position - 坐标位置
|
|
8340
8452
|
* @param options.style - 样式信息
|
|
8341
8453
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8342
|
-
* @param [options.availability] -
|
|
8454
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8343
8455
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8344
8456
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8345
8457
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8375,7 +8487,7 @@ declare class BillboardEntity extends BasePointEntity {
|
|
|
8375
8487
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
8376
8488
|
style: BillboardEntity.StyleOptions | any;
|
|
8377
8489
|
attr?: any;
|
|
8378
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8490
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8379
8491
|
description?: Cesium.Property | string;
|
|
8380
8492
|
viewFrom?: Cesium.Property;
|
|
8381
8493
|
parent?: Cesium.Entity;
|
|
@@ -8513,7 +8625,7 @@ declare namespace BoxEntity {
|
|
|
8513
8625
|
* @param options.style - 样式信息
|
|
8514
8626
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8515
8627
|
* @param [options.orientation] - 实体方向
|
|
8516
|
-
* @param [options.availability] -
|
|
8628
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8517
8629
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8518
8630
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8519
8631
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8540,7 +8652,7 @@ declare class BoxEntity {
|
|
|
8540
8652
|
style: BoxEntity.StyleOptions | any;
|
|
8541
8653
|
attr?: any;
|
|
8542
8654
|
orientation?: Cesium.Property;
|
|
8543
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8655
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8544
8656
|
description?: Cesium.Property | string;
|
|
8545
8657
|
viewFrom?: Cesium.Property;
|
|
8546
8658
|
parent?: Cesium.Entity;
|
|
@@ -8667,7 +8779,7 @@ declare namespace CanvasLabelEntity {
|
|
|
8667
8779
|
* @param options.position - 坐标位置
|
|
8668
8780
|
* @param options.style - 样式信息
|
|
8669
8781
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8670
|
-
* @param [options.availability] -
|
|
8782
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8671
8783
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8672
8784
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8673
8785
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8693,7 +8805,7 @@ declare class CanvasLabelEntity {
|
|
|
8693
8805
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
8694
8806
|
style: CanvasLabelEntity.StyleOptions | any;
|
|
8695
8807
|
attr?: any;
|
|
8696
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8808
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8697
8809
|
description?: Cesium.Property | string;
|
|
8698
8810
|
viewFrom?: Cesium.Property;
|
|
8699
8811
|
parent?: Cesium.Entity;
|
|
@@ -8729,7 +8841,7 @@ declare namespace CircleEntity {
|
|
|
8729
8841
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
8730
8842
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
8731
8843
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`material材质参数`将被覆盖。
|
|
8732
|
-
* @property [color = "#
|
|
8844
|
+
* @property [color = "#ffffff"] - 填充颜色
|
|
8733
8845
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
8734
8846
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
8735
8847
|
* @property [outline = false] - 是否边框
|
|
@@ -8800,7 +8912,7 @@ declare namespace CircleEntity {
|
|
|
8800
8912
|
* @param options.position - 坐标位置
|
|
8801
8913
|
* @param options.style - 样式信息
|
|
8802
8914
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8803
|
-
* @param [options.availability] -
|
|
8915
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8804
8916
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8805
8917
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8806
8918
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8829,7 +8941,7 @@ declare class CircleEntity extends BasePointEntity {
|
|
|
8829
8941
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
8830
8942
|
style: CircleEntity.StyleOptions | any;
|
|
8831
8943
|
attr?: any;
|
|
8832
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8944
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8833
8945
|
description?: Cesium.Property | string;
|
|
8834
8946
|
viewFrom?: Cesium.Property;
|
|
8835
8947
|
parent?: Cesium.Entity;
|
|
@@ -9040,7 +9152,7 @@ declare namespace ConeTrack {
|
|
|
9040
9152
|
* @param [options.targetPosition] - 追踪的目标位置
|
|
9041
9153
|
* @param options.style - 样式信息
|
|
9042
9154
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9043
|
-
* @param [options.availability] -
|
|
9155
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9044
9156
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9045
9157
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9046
9158
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9064,7 +9176,7 @@ declare class ConeTrack extends CylinderEntity {
|
|
|
9064
9176
|
targetPosition?: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
9065
9177
|
style: ConeTrack.StyleOptions | any;
|
|
9066
9178
|
attr?: any;
|
|
9067
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9179
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9068
9180
|
description?: Cesium.Property | string;
|
|
9069
9181
|
viewFrom?: Cesium.Property;
|
|
9070
9182
|
parent?: Cesium.Entity;
|
|
@@ -9141,7 +9253,7 @@ declare namespace CorridorEntity {
|
|
|
9141
9253
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
9142
9254
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
9143
9255
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
9144
|
-
* @property [color = "#
|
|
9256
|
+
* @property [color = "#ffffff"] - 颜色
|
|
9145
9257
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
9146
9258
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
9147
9259
|
* @property [outline = false] - 是否边框
|
|
@@ -9203,7 +9315,7 @@ declare namespace CorridorEntity {
|
|
|
9203
9315
|
* @param options.positions - 坐标位置
|
|
9204
9316
|
* @param options.style - 样式信息
|
|
9205
9317
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9206
|
-
* @param [options.availability] -
|
|
9318
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9207
9319
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9208
9320
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9209
9321
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9233,7 +9345,7 @@ declare class CorridorEntity extends BasePolyEntity {
|
|
|
9233
9345
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
9234
9346
|
style: CorridorEntity.StyleOptions | any;
|
|
9235
9347
|
attr?: any;
|
|
9236
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9348
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9237
9349
|
description?: Cesium.Property | string;
|
|
9238
9350
|
viewFrom?: Cesium.Property;
|
|
9239
9351
|
parent?: Cesium.Entity;
|
|
@@ -9276,7 +9388,7 @@ declare class CorridorEntity extends BasePolyEntity {
|
|
|
9276
9388
|
* // * @param {number} [options.style.sharpness=0.85] 曲线的弯曲程度
|
|
9277
9389
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9278
9390
|
* @param [options.getShowPositions] - 自定义计算曲线点回调方法,可以在方法内自定义计算算法。
|
|
9279
|
-
* @param [options.availability] -
|
|
9391
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9280
9392
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9281
9393
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9282
9394
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9307,7 +9419,7 @@ declare class CurveEntity extends PolylineEntity {
|
|
|
9307
9419
|
style: PolylineEntity.StyleOptions | any;
|
|
9308
9420
|
attr?: any;
|
|
9309
9421
|
getShowPositions?: (...params: any[]) => any;
|
|
9310
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9422
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9311
9423
|
description?: Cesium.Property | string;
|
|
9312
9424
|
viewFrom?: Cesium.Property;
|
|
9313
9425
|
parent?: Cesium.Entity;
|
|
@@ -9405,7 +9517,7 @@ declare namespace CylinderEntity {
|
|
|
9405
9517
|
* @param options.style - 样式信息
|
|
9406
9518
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9407
9519
|
* @param [options.orientation] - 实体方向
|
|
9408
|
-
* @param [options.availability] -
|
|
9520
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9409
9521
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9410
9522
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9411
9523
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9431,7 +9543,7 @@ declare class CylinderEntity extends BasePointEntity {
|
|
|
9431
9543
|
style: CylinderEntity.StyleOptions | any;
|
|
9432
9544
|
attr?: any;
|
|
9433
9545
|
orientation?: Cesium.Property;
|
|
9434
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9546
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9435
9547
|
description?: Cesium.Property | string;
|
|
9436
9548
|
viewFrom?: Cesium.Property;
|
|
9437
9549
|
parent?: Cesium.Entity;
|
|
@@ -9552,7 +9664,7 @@ declare namespace DivBillboardEntity {
|
|
|
9552
9664
|
* @param options.position - 坐标位置
|
|
9553
9665
|
* @param options.style - 样式信息
|
|
9554
9666
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9555
|
-
* @param [options.availability] -
|
|
9667
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9556
9668
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9557
9669
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9558
9670
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9578,7 +9690,7 @@ declare class DivBillboardEntity extends BillboardEntity {
|
|
|
9578
9690
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
9579
9691
|
style: DivBillboardEntity.StyleOptions | any;
|
|
9580
9692
|
attr?: any;
|
|
9581
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9693
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9582
9694
|
description?: Cesium.Property | string;
|
|
9583
9695
|
viewFrom?: Cesium.Property;
|
|
9584
9696
|
parent?: Cesium.Entity;
|
|
@@ -9767,7 +9879,7 @@ declare namespace EllipseEntity {
|
|
|
9767
9879
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
9768
9880
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
9769
9881
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
9770
|
-
* @property [color = "#
|
|
9882
|
+
* @property [color = "#ffffff"] - 填充颜色
|
|
9771
9883
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
9772
9884
|
* @property [outline = false] - 是否边框
|
|
9773
9885
|
* @property [outlineWidth = 1] - 边框宽度
|
|
@@ -9837,7 +9949,7 @@ declare namespace EllipseEntity {
|
|
|
9837
9949
|
* @param options.position - 坐标位置
|
|
9838
9950
|
* @param options.style - 样式信息
|
|
9839
9951
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9840
|
-
* @param [options.availability] -
|
|
9952
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9841
9953
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9842
9954
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9843
9955
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9863,7 +9975,7 @@ declare class EllipseEntity extends CircleEntity {
|
|
|
9863
9975
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
9864
9976
|
style: EllipseEntity.StyleOptions | any;
|
|
9865
9977
|
attr?: any;
|
|
9866
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9978
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9867
9979
|
description?: Cesium.Property | string;
|
|
9868
9980
|
viewFrom?: Cesium.Property;
|
|
9869
9981
|
parent?: Cesium.Entity;
|
|
@@ -10004,7 +10116,7 @@ declare namespace EllipsoidEntity {
|
|
|
10004
10116
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10005
10117
|
* @param [options.orientation] - 实体方向
|
|
10006
10118
|
* @param [options.scanPlane] - 动态扫描面
|
|
10007
|
-
* @param [options.availability] -
|
|
10119
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10008
10120
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10009
10121
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10010
10122
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10034,7 +10146,7 @@ declare class EllipsoidEntity extends BasePointEntity {
|
|
|
10034
10146
|
attr?: any;
|
|
10035
10147
|
orientation?: Cesium.Property;
|
|
10036
10148
|
scanPlane?: EllipsoidEntity.ScanPlaneOptions | EllipsoidEntity.ScanPlaneOptions[];
|
|
10037
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10149
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10038
10150
|
description?: Cesium.Property | string;
|
|
10039
10151
|
viewFrom?: Cesium.Property;
|
|
10040
10152
|
parent?: Cesium.Entity;
|
|
@@ -10179,7 +10291,7 @@ declare namespace FontBillboardEntity {
|
|
|
10179
10291
|
* @param options.position - 坐标位置
|
|
10180
10292
|
* @param options.style - 样式信息
|
|
10181
10293
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10182
|
-
* @param [options.availability] -
|
|
10294
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10183
10295
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10184
10296
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10185
10297
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10205,7 +10317,7 @@ declare class FontBillboardEntity extends BasePointEntity {
|
|
|
10205
10317
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
10206
10318
|
style: FontBillboardEntity.StyleOptions | any;
|
|
10207
10319
|
attr?: any;
|
|
10208
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10320
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10209
10321
|
description?: Cesium.Property | string;
|
|
10210
10322
|
viewFrom?: Cesium.Property;
|
|
10211
10323
|
parent?: Cesium.Entity;
|
|
@@ -10326,7 +10438,7 @@ declare namespace LabelEntity {
|
|
|
10326
10438
|
* @param options.position - 坐标位置
|
|
10327
10439
|
* @param options.style - 样式信息
|
|
10328
10440
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10329
|
-
* @param [options.availability] -
|
|
10441
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10330
10442
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10331
10443
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10332
10444
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10352,7 +10464,7 @@ declare class LabelEntity {
|
|
|
10352
10464
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
10353
10465
|
style: LabelEntity.StyleOptions | any;
|
|
10354
10466
|
attr?: any;
|
|
10355
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10467
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10356
10468
|
description?: Cesium.Property | string;
|
|
10357
10469
|
viewFrom?: Cesium.Property;
|
|
10358
10470
|
parent?: Cesium.Entity;
|
|
@@ -10420,7 +10532,7 @@ declare namespace ModelEntity {
|
|
|
10420
10532
|
* @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
|
|
10421
10533
|
* @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
|
|
10422
10534
|
* @property [fill = false] - 是否填充,指定与模型渲染颜色混合
|
|
10423
|
-
* @property [color = "#
|
|
10535
|
+
* @property [color = "#ffffff"] - 颜色
|
|
10424
10536
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
10425
10537
|
* @property [colorBlendMode = ColorBlendMode.HIGHLIGHT] - 指定颜色如何与模型混合。
|
|
10426
10538
|
* @property [colorBlendAmount = 0.5] - 当colorBlendMode为MIX时指定颜色强度的数字属性。0.0的值表示模型渲染的颜色,1.0的值表示纯色,任何介于两者之间的值表示两者的混合。
|
|
@@ -10504,7 +10616,7 @@ declare namespace ModelEntity {
|
|
|
10504
10616
|
* @param options.style - 样式信息
|
|
10505
10617
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10506
10618
|
* @param [options.orientation] - 实体方向
|
|
10507
|
-
* @param [options.availability] -
|
|
10619
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10508
10620
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10509
10621
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10510
10622
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10547,7 +10659,7 @@ declare class ModelEntity extends BasePointEntity {
|
|
|
10547
10659
|
style: ModelEntity.StyleOptions | any;
|
|
10548
10660
|
attr?: any;
|
|
10549
10661
|
orientation?: Cesium.Property;
|
|
10550
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10662
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10551
10663
|
description?: Cesium.Property | string;
|
|
10552
10664
|
viewFrom?: Cesium.Property;
|
|
10553
10665
|
parent?: Cesium.Entity;
|
|
@@ -10738,7 +10850,7 @@ declare namespace PathEntity {
|
|
|
10738
10850
|
* @param [options.orientation] - 实体方向
|
|
10739
10851
|
* @param options.style - 样式信息
|
|
10740
10852
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10741
|
-
* @param [options.availability] -
|
|
10853
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10742
10854
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10743
10855
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10744
10856
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10771,7 +10883,7 @@ declare class PathEntity extends BasePointEntity {
|
|
|
10771
10883
|
orientation?: Cesium.Property;
|
|
10772
10884
|
style: PathEntity.StyleOptions | any;
|
|
10773
10885
|
attr?: any;
|
|
10774
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10886
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10775
10887
|
description?: Cesium.Property | string;
|
|
10776
10888
|
viewFrom?: Cesium.Property;
|
|
10777
10889
|
parent?: Cesium.Entity;
|
|
@@ -10906,7 +11018,7 @@ declare namespace PitEntity {
|
|
|
10906
11018
|
* @param options.positions - 坐标位置
|
|
10907
11019
|
* @param options.style - 样式信息
|
|
10908
11020
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10909
|
-
* @param [options.availability] -
|
|
11021
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10910
11022
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10911
11023
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10912
11024
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10929,7 +11041,7 @@ declare class PitEntity extends BasePolyEntity {
|
|
|
10929
11041
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
|
|
10930
11042
|
style: PitEntity.StyleOptions | any;
|
|
10931
11043
|
attr?: any;
|
|
10932
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11044
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10933
11045
|
description?: Cesium.Property | string;
|
|
10934
11046
|
viewFrom?: Cesium.Property;
|
|
10935
11047
|
parent?: Cesium.Entity;
|
|
@@ -11028,7 +11140,7 @@ declare namespace PlaneEntity {
|
|
|
11028
11140
|
* @param options.style - 样式信息
|
|
11029
11141
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11030
11142
|
* @param [options.orientation] - 实体方向
|
|
11031
|
-
* @param [options.availability] -
|
|
11143
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11032
11144
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11033
11145
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11034
11146
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11055,7 +11167,7 @@ declare class PlaneEntity {
|
|
|
11055
11167
|
style: PlaneEntity.StyleOptions | any;
|
|
11056
11168
|
attr?: any;
|
|
11057
11169
|
orientation?: Cesium.Property;
|
|
11058
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11170
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11059
11171
|
description?: Cesium.Property | string;
|
|
11060
11172
|
viewFrom?: Cesium.Property;
|
|
11061
11173
|
parent?: Cesium.Entity;
|
|
@@ -11090,7 +11202,7 @@ declare namespace PointEntity {
|
|
|
11090
11202
|
/**
|
|
11091
11203
|
* 像素点 支持的样式信息
|
|
11092
11204
|
* @property [pixelSize = 10] - 像素大小
|
|
11093
|
-
* @property [color = "#
|
|
11205
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11094
11206
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
11095
11207
|
* @property [outline = false] - 是否边框
|
|
11096
11208
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
@@ -11148,7 +11260,7 @@ declare namespace PointEntity {
|
|
|
11148
11260
|
* @param options.position - 坐标位置
|
|
11149
11261
|
* @param options.style - 样式信息
|
|
11150
11262
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11151
|
-
* @param [options.availability] -
|
|
11263
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11152
11264
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11153
11265
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11154
11266
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11184,7 +11296,7 @@ declare class PointEntity extends BasePointEntity {
|
|
|
11184
11296
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
11185
11297
|
style: PointEntity.StyleOptions | any;
|
|
11186
11298
|
attr?: any;
|
|
11187
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11299
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11188
11300
|
description?: Cesium.Property | string;
|
|
11189
11301
|
viewFrom?: Cesium.Property;
|
|
11190
11302
|
parent?: Cesium.Entity;
|
|
@@ -11228,7 +11340,7 @@ declare namespace PolygonEntity {
|
|
|
11228
11340
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
11229
11341
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
11230
11342
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
11231
|
-
* @property [color = "#
|
|
11343
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11232
11344
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
11233
11345
|
* @property [randomColor = false] - 是否随机颜色
|
|
11234
11346
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
@@ -11316,7 +11428,7 @@ declare namespace PolygonEntity {
|
|
|
11316
11428
|
* @param options.positions - 坐标位置
|
|
11317
11429
|
* @param options.style - 样式信息
|
|
11318
11430
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11319
|
-
* @param [options.availability] -
|
|
11431
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11320
11432
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11321
11433
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11322
11434
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11347,7 +11459,7 @@ declare class PolygonEntity extends BasePolyEntity {
|
|
|
11347
11459
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
11348
11460
|
style: PolygonEntity.StyleOptions | any;
|
|
11349
11461
|
attr?: any;
|
|
11350
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11462
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11351
11463
|
description?: Cesium.Property | string;
|
|
11352
11464
|
viewFrom?: Cesium.Property;
|
|
11353
11465
|
parent?: Cesium.Entity;
|
|
@@ -11445,7 +11557,7 @@ declare namespace PolylineEntity {
|
|
|
11445
11557
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
11446
11558
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
11447
11559
|
* @property [width = 4] - 线宽
|
|
11448
|
-
* @property [color = "#
|
|
11560
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11449
11561
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
11450
11562
|
* @property [randomColor = false] - 是否随机颜色
|
|
11451
11563
|
* @property [depthFailMaterial] - 指定当折线位于地形之下时用于绘制折线的材质。
|
|
@@ -11513,7 +11625,7 @@ declare namespace PolylineEntity {
|
|
|
11513
11625
|
* @param options.positions - 坐标位置
|
|
11514
11626
|
* @param options.style - 样式信息
|
|
11515
11627
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11516
|
-
* @param [options.availability] -
|
|
11628
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11517
11629
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11518
11630
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11519
11631
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11544,7 +11656,7 @@ declare class PolylineEntity extends BasePolyEntity {
|
|
|
11544
11656
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | any[] | Cesium.PositionProperty | any;
|
|
11545
11657
|
style: PolylineEntity.StyleOptions | any;
|
|
11546
11658
|
attr?: any;
|
|
11547
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11659
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11548
11660
|
description?: Cesium.Property | string;
|
|
11549
11661
|
viewFrom?: Cesium.Property;
|
|
11550
11662
|
parent?: Cesium.Entity;
|
|
@@ -11648,7 +11760,7 @@ declare namespace PolylineVolumeEntity {
|
|
|
11648
11760
|
* @param options.positions - 坐标位置
|
|
11649
11761
|
* @param options.style - 样式信息
|
|
11650
11762
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11651
|
-
* @param [options.availability] -
|
|
11763
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11652
11764
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11653
11765
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11654
11766
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11678,7 +11790,7 @@ declare class PolylineVolumeEntity extends BasePolyEntity {
|
|
|
11678
11790
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
11679
11791
|
style: PolylineVolumeEntity.StyleOptions | any;
|
|
11680
11792
|
attr?: any;
|
|
11681
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11793
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11682
11794
|
description?: Cesium.Property | string;
|
|
11683
11795
|
viewFrom?: Cesium.Property;
|
|
11684
11796
|
parent?: Cesium.Entity;
|
|
@@ -11720,7 +11832,7 @@ declare namespace RectangleEntity {
|
|
|
11720
11832
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
11721
11833
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
11722
11834
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
11723
|
-
* @property [color = "#
|
|
11835
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11724
11836
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
11725
11837
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
11726
11838
|
* @property [outline = false] - 是否边框
|
|
@@ -11796,7 +11908,7 @@ declare namespace RectangleEntity {
|
|
|
11796
11908
|
* @param [options.rectangle] - 矩形范围,与positions二选一。
|
|
11797
11909
|
* @param options.style - 样式信息
|
|
11798
11910
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11799
|
-
* @param [options.availability] -
|
|
11911
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11800
11912
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11801
11913
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11802
11914
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11827,7 +11939,7 @@ declare class RectangleEntity extends BasePolyEntity {
|
|
|
11827
11939
|
rectangle?: Cesium.Rectangle | Cesium.PositionProperty | Cesium.CallbackProperty;
|
|
11828
11940
|
style: RectangleEntity.StyleOptions | any;
|
|
11829
11941
|
attr?: any;
|
|
11830
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11942
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11831
11943
|
description?: Cesium.Property | string;
|
|
11832
11944
|
viewFrom?: Cesium.Property;
|
|
11833
11945
|
parent?: Cesium.Entity;
|
|
@@ -12047,7 +12159,7 @@ declare namespace RectangularSensor {
|
|
|
12047
12159
|
* @param options.style - 样式信息
|
|
12048
12160
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12049
12161
|
* @param [options.orientation] - 实体方向
|
|
12050
|
-
* @param [options.availability] -
|
|
12162
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12051
12163
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12052
12164
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12053
12165
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12074,7 +12186,7 @@ declare class RectangularSensor {
|
|
|
12074
12186
|
style: RectangularSensor.StyleOptions | any;
|
|
12075
12187
|
attr?: any;
|
|
12076
12188
|
orientation?: Cesium.Property;
|
|
12077
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12189
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12078
12190
|
description?: Cesium.Property | string;
|
|
12079
12191
|
viewFrom?: Cesium.Property;
|
|
12080
12192
|
parent?: Cesium.Entity;
|
|
@@ -12362,7 +12474,7 @@ declare namespace WallEntity {
|
|
|
12362
12474
|
* @param options.positions - 坐标位置
|
|
12363
12475
|
* @param options.style - 样式信息
|
|
12364
12476
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12365
|
-
* @param [options.availability] -
|
|
12477
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12366
12478
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12367
12479
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12368
12480
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12392,7 +12504,7 @@ declare class WallEntity extends BasePolyEntity {
|
|
|
12392
12504
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12393
12505
|
style: WallEntity.StyleOptions | any;
|
|
12394
12506
|
attr?: any;
|
|
12395
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12507
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12396
12508
|
description?: Cesium.Property | string;
|
|
12397
12509
|
viewFrom?: Cesium.Property;
|
|
12398
12510
|
parent?: Cesium.Entity;
|
|
@@ -12433,7 +12545,7 @@ declare class WallEntity extends BasePolyEntity {
|
|
|
12433
12545
|
* @param options.positions - 坐标位置
|
|
12434
12546
|
* @param options.style - 样式信息
|
|
12435
12547
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12436
|
-
* @param [options.availability] -
|
|
12548
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12437
12549
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12438
12550
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12439
12551
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12457,7 +12569,7 @@ declare class AttackArrow extends PolygonEntity {
|
|
|
12457
12569
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12458
12570
|
style: PolygonEntity.StyleOptions | any;
|
|
12459
12571
|
attr?: any;
|
|
12460
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12572
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12461
12573
|
description?: Cesium.Property | string;
|
|
12462
12574
|
viewFrom?: Cesium.Property;
|
|
12463
12575
|
parent?: Cesium.Entity;
|
|
@@ -12484,7 +12596,7 @@ declare class AttackArrow extends PolygonEntity {
|
|
|
12484
12596
|
* @param options.positions - 坐标位置
|
|
12485
12597
|
* @param options.style - 样式信息
|
|
12486
12598
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12487
|
-
* @param [options.availability] -
|
|
12599
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12488
12600
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12489
12601
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12490
12602
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12508,7 +12620,7 @@ declare class AttackArrowPW extends PolygonEntity {
|
|
|
12508
12620
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12509
12621
|
style: PolygonEntity.StyleOptions | any;
|
|
12510
12622
|
attr?: any;
|
|
12511
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12623
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12512
12624
|
description?: Cesium.Property | string;
|
|
12513
12625
|
viewFrom?: Cesium.Property;
|
|
12514
12626
|
parent?: Cesium.Entity;
|
|
@@ -12542,7 +12654,7 @@ declare class AttackArrowPW extends PolygonEntity {
|
|
|
12542
12654
|
* @param options.positions - 坐标位置
|
|
12543
12655
|
* @param options.style - 样式信息
|
|
12544
12656
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12545
|
-
* @param [options.availability] -
|
|
12657
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12546
12658
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12547
12659
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12548
12660
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12566,7 +12678,7 @@ declare class AttackArrowYW extends PolygonEntity {
|
|
|
12566
12678
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12567
12679
|
style: PolygonEntity.StyleOptions | any;
|
|
12568
12680
|
attr?: any;
|
|
12569
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12681
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12570
12682
|
description?: Cesium.Property | string;
|
|
12571
12683
|
viewFrom?: Cesium.Property;
|
|
12572
12684
|
parent?: Cesium.Entity;
|
|
@@ -12600,7 +12712,7 @@ declare class AttackArrowYW extends PolygonEntity {
|
|
|
12600
12712
|
* @param options.positions - 坐标位置
|
|
12601
12713
|
* @param options.style - 样式信息
|
|
12602
12714
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12603
|
-
* @param [options.availability] -
|
|
12715
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12604
12716
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12605
12717
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12606
12718
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12624,7 +12736,7 @@ declare class CloseVurve extends PolygonEntity {
|
|
|
12624
12736
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12625
12737
|
style: PolygonEntity.StyleOptions | any;
|
|
12626
12738
|
attr?: any;
|
|
12627
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12739
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12628
12740
|
description?: Cesium.Property | string;
|
|
12629
12741
|
viewFrom?: Cesium.Property;
|
|
12630
12742
|
parent?: Cesium.Entity;
|
|
@@ -12658,7 +12770,7 @@ declare class CloseVurve extends PolygonEntity {
|
|
|
12658
12770
|
* @param options.positions - 坐标位置
|
|
12659
12771
|
* @param options.style - 样式信息
|
|
12660
12772
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12661
|
-
* @param [options.availability] -
|
|
12773
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12662
12774
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12663
12775
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12664
12776
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12682,7 +12794,7 @@ declare class DoubleArrow extends PolygonEntity {
|
|
|
12682
12794
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12683
12795
|
style: PolygonEntity.StyleOptions | any;
|
|
12684
12796
|
attr?: any;
|
|
12685
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12797
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12686
12798
|
description?: Cesium.Property | string;
|
|
12687
12799
|
viewFrom?: Cesium.Property;
|
|
12688
12800
|
parent?: Cesium.Entity;
|
|
@@ -12728,7 +12840,7 @@ declare class EditSector extends EditPolygon {
|
|
|
12728
12840
|
* @param options.positions - 坐标位置
|
|
12729
12841
|
* @param options.style - 样式信息
|
|
12730
12842
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12731
|
-
* @param [options.availability] -
|
|
12843
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12732
12844
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12733
12845
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12734
12846
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12752,7 +12864,7 @@ declare class FineArrow extends PolygonEntity {
|
|
|
12752
12864
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12753
12865
|
style: PolygonEntity.StyleOptions | any;
|
|
12754
12866
|
attr?: any;
|
|
12755
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12867
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12756
12868
|
description?: Cesium.Property | string;
|
|
12757
12869
|
viewFrom?: Cesium.Property;
|
|
12758
12870
|
parent?: Cesium.Entity;
|
|
@@ -12786,7 +12898,7 @@ declare class FineArrow extends PolygonEntity {
|
|
|
12786
12898
|
* @param options.positions - 坐标位置
|
|
12787
12899
|
* @param options.style - 样式信息
|
|
12788
12900
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12789
|
-
* @param [options.availability] -
|
|
12901
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12790
12902
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12791
12903
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12792
12904
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12810,7 +12922,7 @@ declare class FineArrowYW extends PolygonEntity {
|
|
|
12810
12922
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12811
12923
|
style: PolygonEntity.StyleOptions | any;
|
|
12812
12924
|
attr?: any;
|
|
12813
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12925
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12814
12926
|
description?: Cesium.Property | string;
|
|
12815
12927
|
viewFrom?: Cesium.Property;
|
|
12816
12928
|
parent?: Cesium.Entity;
|
|
@@ -12844,7 +12956,7 @@ declare class FineArrowYW extends PolygonEntity {
|
|
|
12844
12956
|
* @param options.positions - 坐标位置
|
|
12845
12957
|
* @param options.style - 样式信息
|
|
12846
12958
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12847
|
-
* @param [options.availability] -
|
|
12959
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12848
12960
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12849
12961
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12850
12962
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12868,7 +12980,7 @@ declare class GatheringPlace extends PolygonEntity {
|
|
|
12868
12980
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12869
12981
|
style: PolygonEntity.StyleOptions | any;
|
|
12870
12982
|
attr?: any;
|
|
12871
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12983
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12872
12984
|
description?: Cesium.Property | string;
|
|
12873
12985
|
viewFrom?: Cesium.Property;
|
|
12874
12986
|
parent?: Cesium.Entity;
|
|
@@ -12902,7 +13014,7 @@ declare class GatheringPlace extends PolygonEntity {
|
|
|
12902
13014
|
* @param options.positions - 坐标位置
|
|
12903
13015
|
* @param options.style - 样式信息
|
|
12904
13016
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12905
|
-
* @param [options.availability] -
|
|
13017
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12906
13018
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12907
13019
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12908
13020
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12926,7 +13038,7 @@ declare class IsosTriangle extends PolygonEntity {
|
|
|
12926
13038
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12927
13039
|
style: PolygonEntity.StyleOptions | any;
|
|
12928
13040
|
attr?: any;
|
|
12929
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13041
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12930
13042
|
description?: Cesium.Property | string;
|
|
12931
13043
|
viewFrom?: Cesium.Property;
|
|
12932
13044
|
parent?: Cesium.Entity;
|
|
@@ -12960,7 +13072,7 @@ declare class IsosTriangle extends PolygonEntity {
|
|
|
12960
13072
|
* @param options.positions - 坐标位置
|
|
12961
13073
|
* @param options.style - 样式信息
|
|
12962
13074
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12963
|
-
* @param [options.availability] -
|
|
13075
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12964
13076
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12965
13077
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12966
13078
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12984,7 +13096,7 @@ declare class Lune extends PolygonEntity {
|
|
|
12984
13096
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12985
13097
|
style: PolygonEntity.StyleOptions | any;
|
|
12986
13098
|
attr?: any;
|
|
12987
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13099
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12988
13100
|
description?: Cesium.Property | string;
|
|
12989
13101
|
viewFrom?: Cesium.Property;
|
|
12990
13102
|
parent?: Cesium.Entity;
|
|
@@ -13022,7 +13134,7 @@ declare class Lune extends PolygonEntity {
|
|
|
13022
13134
|
* @param options.style.radius - 区域的半径(单位:米)
|
|
13023
13135
|
* @param [options.style.startAngle = 0] - 区域的开始角度(正东方向为0,顺时针到360度)
|
|
13024
13136
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13025
|
-
* @param [options.availability] -
|
|
13137
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13026
13138
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13027
13139
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13028
13140
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13051,7 +13163,7 @@ declare class Regular extends PolygonEntity {
|
|
|
13051
13163
|
startAngle?: number;
|
|
13052
13164
|
};
|
|
13053
13165
|
attr?: any;
|
|
13054
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13166
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13055
13167
|
description?: Cesium.Property | string;
|
|
13056
13168
|
viewFrom?: Cesium.Property;
|
|
13057
13169
|
parent?: Cesium.Entity;
|
|
@@ -13105,7 +13217,7 @@ declare class Regular extends PolygonEntity {
|
|
|
13105
13217
|
* @param options.style.endAngle - 扇形区域的结束角度(正东方向为0,顺时针到360度)
|
|
13106
13218
|
* @param [options.style.noCenter] - 不连中心点
|
|
13107
13219
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13108
|
-
* @param [options.availability] -
|
|
13220
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13109
13221
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13110
13222
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13111
13223
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13135,7 +13247,7 @@ declare class Sector extends PolygonEntity {
|
|
|
13135
13247
|
noCenter?: boolean;
|
|
13136
13248
|
};
|
|
13137
13249
|
attr?: any;
|
|
13138
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13250
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13139
13251
|
description?: Cesium.Property | string;
|
|
13140
13252
|
viewFrom?: Cesium.Property;
|
|
13141
13253
|
parent?: Cesium.Entity;
|
|
@@ -13199,7 +13311,7 @@ declare class Sector extends PolygonEntity {
|
|
|
13199
13311
|
* @param options.positions - 坐标位置
|
|
13200
13312
|
* @param options.style - 样式信息
|
|
13201
13313
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13202
|
-
* @param [options.availability] -
|
|
13314
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13203
13315
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13204
13316
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13205
13317
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13223,7 +13335,7 @@ declare class StraightArrow extends PolygonEntity {
|
|
|
13223
13335
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
13224
13336
|
style: PolygonEntity.StyleOptions | any;
|
|
13225
13337
|
attr?: any;
|
|
13226
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13338
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13227
13339
|
description?: Cesium.Property | string;
|
|
13228
13340
|
viewFrom?: Cesium.Property;
|
|
13229
13341
|
parent?: Cesium.Entity;
|
|
@@ -13261,7 +13373,7 @@ declare class StraightArrow extends PolygonEntity {
|
|
|
13261
13373
|
* @param [options.label] - 测量结果文本的样式
|
|
13262
13374
|
* @param [options.angleDecimal = 1] - 显示的 角度值 文本中保留的小数位
|
|
13263
13375
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13264
|
-
* @param [options.availability] -
|
|
13376
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13265
13377
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13266
13378
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13267
13379
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13294,7 +13406,7 @@ declare class AngleMeasure extends PolylineEntity {
|
|
|
13294
13406
|
label?: LabelEntity.StyleOptions | any;
|
|
13295
13407
|
angleDecimal?: number;
|
|
13296
13408
|
decimal?: number;
|
|
13297
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13409
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13298
13410
|
description?: Cesium.Property | string;
|
|
13299
13411
|
viewFrom?: Cesium.Property;
|
|
13300
13412
|
parent?: Cesium.Entity;
|
|
@@ -13340,7 +13452,7 @@ declare class AngleMeasure extends PolylineEntity {
|
|
|
13340
13452
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13341
13453
|
* @param [options.label] - 测量结果文本的样式
|
|
13342
13454
|
* @param [options.decimal = 2] - 显示的 面积值 文本中保留的小数位
|
|
13343
|
-
* @param [options.availability] -
|
|
13455
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13344
13456
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13345
13457
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13346
13458
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13372,7 +13484,7 @@ declare class AreaMeasure extends PolygonEntity {
|
|
|
13372
13484
|
attr?: any;
|
|
13373
13485
|
label?: LabelEntity.StyleOptions | any;
|
|
13374
13486
|
decimal?: number;
|
|
13375
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13487
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13376
13488
|
description?: Cesium.Property | string;
|
|
13377
13489
|
viewFrom?: Cesium.Property;
|
|
13378
13490
|
parent?: Cesium.Entity;
|
|
@@ -13424,7 +13536,7 @@ declare class AreaMeasure extends PolygonEntity {
|
|
|
13424
13536
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13425
13537
|
* @param [options.label] - 测量结果文本的样式
|
|
13426
13538
|
* @param [options.decimal = 2] - 显示的 面积值 文本中保留的小数位
|
|
13427
|
-
* @param [options.availability] -
|
|
13539
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13428
13540
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13429
13541
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13430
13542
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13456,7 +13568,7 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
|
|
|
13456
13568
|
attr?: any;
|
|
13457
13569
|
label?: LabelEntity.StyleOptions | any;
|
|
13458
13570
|
decimal?: number;
|
|
13459
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13571
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13460
13572
|
description?: Cesium.Property | string;
|
|
13461
13573
|
viewFrom?: Cesium.Property;
|
|
13462
13574
|
parent?: Cesium.Entity;
|
|
@@ -13492,7 +13604,7 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
|
|
|
13492
13604
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13493
13605
|
* @param [options.label] - 测量结果文本的样式
|
|
13494
13606
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13495
|
-
* @param [options.availability] -
|
|
13607
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13496
13608
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13497
13609
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13498
13610
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13524,7 +13636,7 @@ declare class DistanceMeasure extends PolylineEntity {
|
|
|
13524
13636
|
attr?: any;
|
|
13525
13637
|
label?: LabelEntity.StyleOptions | any;
|
|
13526
13638
|
decimal?: number;
|
|
13527
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13639
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13528
13640
|
description?: Cesium.Property | string;
|
|
13529
13641
|
viewFrom?: Cesium.Property;
|
|
13530
13642
|
parent?: Cesium.Entity;
|
|
@@ -13570,7 +13682,7 @@ declare class DistanceMeasure extends PolylineEntity {
|
|
|
13570
13682
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13571
13683
|
* @param [options.label] - 测量结果文本的样式
|
|
13572
13684
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13573
|
-
* @param [options.availability] -
|
|
13685
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13574
13686
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13575
13687
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13576
13688
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13602,7 +13714,7 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
|
|
|
13602
13714
|
attr?: any;
|
|
13603
13715
|
label?: LabelEntity.StyleOptions | any;
|
|
13604
13716
|
decimal?: number;
|
|
13605
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13717
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13606
13718
|
description?: Cesium.Property | string;
|
|
13607
13719
|
viewFrom?: Cesium.Property;
|
|
13608
13720
|
parent?: Cesium.Entity;
|
|
@@ -13638,7 +13750,7 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
|
|
|
13638
13750
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13639
13751
|
* @param [options.label] - 测量结果文本的样式
|
|
13640
13752
|
* @param [options.decimal = 2] - 显示的 距离和高度值 文本中保留的小数位
|
|
13641
|
-
* @param [options.availability] -
|
|
13753
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13642
13754
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13643
13755
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13644
13756
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13670,7 +13782,7 @@ declare class HeightMeasure extends PolylineEntity {
|
|
|
13670
13782
|
attr?: any;
|
|
13671
13783
|
label?: LabelEntity.StyleOptions | any;
|
|
13672
13784
|
decimal?: number;
|
|
13673
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13785
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13674
13786
|
description?: Cesium.Property | string;
|
|
13675
13787
|
viewFrom?: Cesium.Property;
|
|
13676
13788
|
parent?: Cesium.Entity;
|
|
@@ -13716,7 +13828,7 @@ declare class HeightMeasure extends PolylineEntity {
|
|
|
13716
13828
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13717
13829
|
* @param [options.label] - 测量结果文本的样式
|
|
13718
13830
|
* @param [options.decimal = 2] - 显示的 距离和高度值 文本中保留的小数位
|
|
13719
|
-
* @param [options.availability] -
|
|
13831
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13720
13832
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13721
13833
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13722
13834
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13748,7 +13860,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
|
|
|
13748
13860
|
attr?: any;
|
|
13749
13861
|
label?: LabelEntity.StyleOptions | any;
|
|
13750
13862
|
decimal?: number;
|
|
13751
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13863
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13752
13864
|
description?: Cesium.Property | string;
|
|
13753
13865
|
viewFrom?: Cesium.Property;
|
|
13754
13866
|
parent?: Cesium.Entity;
|
|
@@ -13789,7 +13901,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
|
|
|
13789
13901
|
* @param options.position - 坐标位置
|
|
13790
13902
|
* @param options.style - 样式信息
|
|
13791
13903
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13792
|
-
* @param [options.availability] -
|
|
13904
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13793
13905
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13794
13906
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13795
13907
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13816,7 +13928,7 @@ declare class PointMeasure extends PointEntity {
|
|
|
13816
13928
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
13817
13929
|
style: PointEntity.StyleOptions | any;
|
|
13818
13930
|
attr?: any;
|
|
13819
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13931
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13820
13932
|
description?: Cesium.Property | string;
|
|
13821
13933
|
viewFrom?: Cesium.Property;
|
|
13822
13934
|
parent?: Cesium.Entity;
|
|
@@ -13848,7 +13960,7 @@ declare class PointMeasure extends PointEntity {
|
|
|
13848
13960
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13849
13961
|
* @param [options.label] - 测量结果文本的样式
|
|
13850
13962
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13851
|
-
* @param [options.availability] -
|
|
13963
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13852
13964
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13853
13965
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13854
13966
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13881,7 +13993,7 @@ declare class SectionMeasure extends DistanceMeasure {
|
|
|
13881
13993
|
attr?: any;
|
|
13882
13994
|
label?: LabelEntity.StyleOptions | any;
|
|
13883
13995
|
decimal?: number;
|
|
13884
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13996
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13885
13997
|
description?: Cesium.Property | string;
|
|
13886
13998
|
viewFrom?: Cesium.Property;
|
|
13887
13999
|
parent?: Cesium.Entity;
|
|
@@ -14146,6 +14258,7 @@ declare class VolumeMeasure extends AreaMeasure {
|
|
|
14146
14258
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14147
14259
|
* @param [options.name = ''] - 矢量数据名称
|
|
14148
14260
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14261
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14149
14262
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14150
14263
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14151
14264
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14188,6 +14301,7 @@ declare class BasePointPrimitive extends BasePrimitive {
|
|
|
14188
14301
|
id?: string | number;
|
|
14189
14302
|
name?: string;
|
|
14190
14303
|
show?: boolean;
|
|
14304
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14191
14305
|
eventParent?: BaseClass | boolean;
|
|
14192
14306
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14193
14307
|
flyTo?: boolean;
|
|
@@ -14321,6 +14435,7 @@ declare class BasePointPrimitive extends BasePrimitive {
|
|
|
14321
14435
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14322
14436
|
* @param [options.name = ''] - 矢量数据名称
|
|
14323
14437
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14438
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14324
14439
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14325
14440
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14326
14441
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14351,6 +14466,7 @@ declare class BasePolyPrimitive extends BasePrimitive {
|
|
|
14351
14466
|
id?: string | number;
|
|
14352
14467
|
name?: string;
|
|
14353
14468
|
show?: boolean;
|
|
14469
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14354
14470
|
eventParent?: BaseClass | boolean;
|
|
14355
14471
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14356
14472
|
flyTo?: boolean;
|
|
@@ -14450,6 +14566,7 @@ declare class BasePolyPrimitive extends BasePrimitive {
|
|
|
14450
14566
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14451
14567
|
* @param [options.name = ''] - 矢量数据名称
|
|
14452
14568
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14569
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14453
14570
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14454
14571
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14455
14572
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14481,6 +14598,7 @@ declare class BasePrimitive extends BaseGraphic {
|
|
|
14481
14598
|
id?: string | number;
|
|
14482
14599
|
name?: string;
|
|
14483
14600
|
show?: boolean;
|
|
14601
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14484
14602
|
eventParent?: BaseClass | boolean;
|
|
14485
14603
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14486
14604
|
flyTo?: boolean;
|
|
@@ -14601,6 +14719,7 @@ declare class BasePrimitive extends BaseGraphic {
|
|
|
14601
14719
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14602
14720
|
* @param [options.name = ''] - 矢量数据名称
|
|
14603
14721
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14722
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14604
14723
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14605
14724
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14606
14725
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14624,6 +14743,7 @@ declare class BillboardPrimitive extends BasePointPrimitive {
|
|
|
14624
14743
|
id?: string | number;
|
|
14625
14744
|
name?: string;
|
|
14626
14745
|
show?: boolean;
|
|
14746
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14627
14747
|
eventParent?: BaseClass | boolean;
|
|
14628
14748
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14629
14749
|
flyTo?: boolean;
|
|
@@ -14738,6 +14858,7 @@ declare namespace BoxPrimitive {
|
|
|
14738
14858
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14739
14859
|
* @param [options.name = ''] - 矢量数据名称
|
|
14740
14860
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14861
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14741
14862
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14742
14863
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14743
14864
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14769,6 +14890,7 @@ declare class BoxPrimitive extends BasePointPrimitive {
|
|
|
14769
14890
|
id?: string | number;
|
|
14770
14891
|
name?: string;
|
|
14771
14892
|
show?: boolean;
|
|
14893
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14772
14894
|
eventParent?: BaseClass | boolean;
|
|
14773
14895
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14774
14896
|
flyTo?: boolean;
|
|
@@ -14877,6 +14999,7 @@ declare namespace CirclePrimitive {
|
|
|
14877
14999
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14878
15000
|
* @param [options.name = ''] - 矢量数据名称
|
|
14879
15001
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15002
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14880
15003
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14881
15004
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14882
15005
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14908,6 +15031,7 @@ declare class CirclePrimitive extends BasePointPrimitive {
|
|
|
14908
15031
|
id?: string | number;
|
|
14909
15032
|
name?: string;
|
|
14910
15033
|
show?: boolean;
|
|
15034
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14911
15035
|
eventParent?: BaseClass | boolean;
|
|
14912
15036
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14913
15037
|
flyTo?: boolean;
|
|
@@ -15028,6 +15152,7 @@ declare namespace CloudPrimitive {
|
|
|
15028
15152
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15029
15153
|
* @param [options.name = ''] - 矢量数据名称
|
|
15030
15154
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15155
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15031
15156
|
* @param [options.stopPropagation = false] - 当前类中事件是否停止冒泡, false时:事件冒泡到layer中。
|
|
15032
15157
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
15033
15158
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -15045,6 +15170,7 @@ declare class CloudPrimitive extends BasePointPrimitive {
|
|
|
15045
15170
|
id?: string | number;
|
|
15046
15171
|
name?: string;
|
|
15047
15172
|
show?: boolean;
|
|
15173
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15048
15174
|
stopPropagation?: boolean;
|
|
15049
15175
|
flyTo?: boolean;
|
|
15050
15176
|
flyToOptions?: any;
|
|
@@ -15244,6 +15370,7 @@ declare namespace ConeTrackPrimitive {
|
|
|
15244
15370
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15245
15371
|
* @param [options.name = ''] - 矢量数据名称
|
|
15246
15372
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15373
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15247
15374
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15248
15375
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15249
15376
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15275,6 +15402,7 @@ declare class ConeTrackPrimitive extends CylinderPrimitive {
|
|
|
15275
15402
|
id?: string | number;
|
|
15276
15403
|
name?: string;
|
|
15277
15404
|
show?: boolean;
|
|
15405
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15278
15406
|
eventParent?: BaseClass | boolean;
|
|
15279
15407
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15280
15408
|
flyTo?: boolean;
|
|
@@ -15306,7 +15434,7 @@ declare namespace CorridorPrimitive {
|
|
|
15306
15434
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
15307
15435
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
15308
15436
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
15309
|
-
* @property [color = "#
|
|
15437
|
+
* @property [color = "#ffffff"] - 颜色
|
|
15310
15438
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
15311
15439
|
* @property [outline = false] - 是否边框
|
|
15312
15440
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
@@ -15393,6 +15521,7 @@ declare namespace CorridorPrimitive {
|
|
|
15393
15521
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15394
15522
|
* @param [options.name = ''] - 矢量数据名称
|
|
15395
15523
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15524
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15396
15525
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15397
15526
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15398
15527
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15423,6 +15552,7 @@ declare class CorridorPrimitive extends BasePolyPrimitive {
|
|
|
15423
15552
|
id?: string | number;
|
|
15424
15553
|
name?: string;
|
|
15425
15554
|
show?: boolean;
|
|
15555
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15426
15556
|
eventParent?: BaseClass | boolean;
|
|
15427
15557
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15428
15558
|
flyTo?: boolean;
|
|
@@ -15515,6 +15645,7 @@ declare namespace CylinderPrimitive {
|
|
|
15515
15645
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15516
15646
|
* @param [options.name = ''] - 矢量数据名称
|
|
15517
15647
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15648
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15518
15649
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15519
15650
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15520
15651
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15546,6 +15677,7 @@ declare class CylinderPrimitive extends BasePointPrimitive {
|
|
|
15546
15677
|
id?: string | number;
|
|
15547
15678
|
name?: string;
|
|
15548
15679
|
show?: boolean;
|
|
15680
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15549
15681
|
eventParent?: BaseClass | boolean;
|
|
15550
15682
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15551
15683
|
flyTo?: boolean;
|
|
@@ -15557,7 +15689,7 @@ declare namespace DiffuseWall {
|
|
|
15557
15689
|
/**
|
|
15558
15690
|
* 立体面(或圆)散射效果 支持的样式信息
|
|
15559
15691
|
* @property [diffHeight = 100] - 墙高
|
|
15560
|
-
* @property [color = "#
|
|
15692
|
+
* @property [color = "#ffffff"] - 颜色
|
|
15561
15693
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
15562
15694
|
* @property [speed = 10] - 扩散的速度,值越大越快
|
|
15563
15695
|
* @property [maxScale = 1] - 扩散的最大比例
|
|
@@ -15588,6 +15720,7 @@ declare namespace DiffuseWall {
|
|
|
15588
15720
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15589
15721
|
* @param [options.name = ''] - 矢量数据名称
|
|
15590
15722
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15723
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15591
15724
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15592
15725
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15593
15726
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15607,6 +15740,7 @@ declare class DiffuseWall extends BasePolyPrimitive {
|
|
|
15607
15740
|
id?: string | number;
|
|
15608
15741
|
name?: string;
|
|
15609
15742
|
show?: boolean;
|
|
15743
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15610
15744
|
eventParent?: BaseClass | boolean;
|
|
15611
15745
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15612
15746
|
flyTo?: boolean;
|
|
@@ -15711,6 +15845,7 @@ declare namespace DoubleSidedPlane {
|
|
|
15711
15845
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15712
15846
|
* @param [options.name = ''] - 矢量数据名称
|
|
15713
15847
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15848
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15714
15849
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15715
15850
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15716
15851
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15742,6 +15877,7 @@ declare class DoubleSidedPlane extends BasePointPrimitive {
|
|
|
15742
15877
|
id?: string | number;
|
|
15743
15878
|
name?: string;
|
|
15744
15879
|
show?: boolean;
|
|
15880
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15745
15881
|
eventParent?: BaseClass | boolean;
|
|
15746
15882
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15747
15883
|
flyTo?: boolean;
|
|
@@ -15782,6 +15918,7 @@ declare namespace DynamicRiver {
|
|
|
15782
15918
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15783
15919
|
* @param [options.name = ''] - 矢量数据名称
|
|
15784
15920
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15921
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15785
15922
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15786
15923
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15787
15924
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15795,6 +15932,7 @@ declare class DynamicRiver extends BasePolyPrimitive {
|
|
|
15795
15932
|
id?: string | number;
|
|
15796
15933
|
name?: string;
|
|
15797
15934
|
show?: boolean;
|
|
15935
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15798
15936
|
eventParent?: BaseClass | boolean;
|
|
15799
15937
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15800
15938
|
flyTo?: boolean;
|
|
@@ -15960,6 +16098,7 @@ declare namespace EllipsoidPrimitive {
|
|
|
15960
16098
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15961
16099
|
* @param [options.name = ''] - 矢量数据名称
|
|
15962
16100
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16101
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15963
16102
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15964
16103
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15965
16104
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15991,6 +16130,7 @@ declare class EllipsoidPrimitive extends BasePointPrimitive {
|
|
|
15991
16130
|
id?: string | number;
|
|
15992
16131
|
name?: string;
|
|
15993
16132
|
show?: boolean;
|
|
16133
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15994
16134
|
eventParent?: BaseClass | boolean;
|
|
15995
16135
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15996
16136
|
flyTo?: boolean;
|
|
@@ -16082,6 +16222,7 @@ declare namespace FrustumPrimitive {
|
|
|
16082
16222
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16083
16223
|
* @param [options.name = ''] - 矢量数据名称
|
|
16084
16224
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16225
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16085
16226
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16086
16227
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16087
16228
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16114,6 +16255,7 @@ declare class FrustumPrimitive extends BasePointPrimitive {
|
|
|
16114
16255
|
id?: string | number;
|
|
16115
16256
|
name?: string;
|
|
16116
16257
|
show?: boolean;
|
|
16258
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16117
16259
|
eventParent?: BaseClass | boolean;
|
|
16118
16260
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16119
16261
|
flyTo?: boolean;
|
|
@@ -16191,6 +16333,7 @@ declare namespace LabelPrimitive {
|
|
|
16191
16333
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16192
16334
|
* @param [options.name = ''] - 矢量数据名称
|
|
16193
16335
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16336
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16194
16337
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16195
16338
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16196
16339
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16214,6 +16357,7 @@ declare class LabelPrimitive extends BasePointPrimitive {
|
|
|
16214
16357
|
id?: string | number;
|
|
16215
16358
|
name?: string;
|
|
16216
16359
|
show?: boolean;
|
|
16360
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16217
16361
|
eventParent?: BaseClass | boolean;
|
|
16218
16362
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16219
16363
|
flyTo?: boolean;
|
|
@@ -16267,6 +16411,7 @@ declare namespace LightCone {
|
|
|
16267
16411
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16268
16412
|
* @param [options.name = ''] - 矢量数据名称
|
|
16269
16413
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16414
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16270
16415
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16271
16416
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16272
16417
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16285,6 +16430,7 @@ declare class LightCone extends BasePointPrimitive {
|
|
|
16285
16430
|
id?: string | number;
|
|
16286
16431
|
name?: string;
|
|
16287
16432
|
show?: boolean;
|
|
16433
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16288
16434
|
eventParent?: BaseClass | boolean;
|
|
16289
16435
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16290
16436
|
flyTo?: boolean;
|
|
@@ -16321,7 +16467,7 @@ declare namespace ModelPrimitive {
|
|
|
16321
16467
|
* @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
|
|
16322
16468
|
* @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
|
|
16323
16469
|
* @property [fill = false] - 是否填充,指定与模型渲染颜色混合
|
|
16324
|
-
* @property [color = "#
|
|
16470
|
+
* @property [color = "#ffffff"] - 颜色
|
|
16325
16471
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
16326
16472
|
* @property [colorBlendMode = ColorBlendMode.HIGHLIGHT] - 指定颜色如何与模型混合。
|
|
16327
16473
|
* @property [colorBlendAmount = 0.5] - 当colorBlendMode为MIX时指定颜色强度的数字属性。0.0的值表示模型渲染的颜色,1.0的值表示纯色,任何介于两者之间的值表示两者的混合。
|
|
@@ -16495,6 +16641,7 @@ declare namespace ModelPrimitive {
|
|
|
16495
16641
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16496
16642
|
* @param [options.name = ''] - 矢量数据名称
|
|
16497
16643
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16644
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16498
16645
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16499
16646
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16500
16647
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16528,6 +16675,7 @@ declare class ModelPrimitive extends BasePointPrimitive {
|
|
|
16528
16675
|
id?: string | number;
|
|
16529
16676
|
name?: string;
|
|
16530
16677
|
show?: boolean;
|
|
16678
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16531
16679
|
eventParent?: BaseClass | boolean;
|
|
16532
16680
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16533
16681
|
flyTo?: boolean;
|
|
@@ -16606,6 +16754,7 @@ declare namespace Pit {
|
|
|
16606
16754
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16607
16755
|
* @param [options.name = ''] - 矢量数据名称
|
|
16608
16756
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16757
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16609
16758
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16610
16759
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16611
16760
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16636,6 +16785,7 @@ declare class Pit extends BasePolyPrimitive {
|
|
|
16636
16785
|
id?: string | number;
|
|
16637
16786
|
name?: string;
|
|
16638
16787
|
show?: boolean;
|
|
16788
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16639
16789
|
eventParent?: BaseClass | boolean;
|
|
16640
16790
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16641
16791
|
flyTo?: boolean;
|
|
@@ -16740,6 +16890,7 @@ declare namespace PlanePrimitive {
|
|
|
16740
16890
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16741
16891
|
* @param [options.name = ''] - 矢量数据名称
|
|
16742
16892
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16893
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16743
16894
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16744
16895
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16745
16896
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16771,6 +16922,7 @@ declare class PlanePrimitive extends BasePointPrimitive {
|
|
|
16771
16922
|
id?: string | number;
|
|
16772
16923
|
name?: string;
|
|
16773
16924
|
show?: boolean;
|
|
16925
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16774
16926
|
eventParent?: BaseClass | boolean;
|
|
16775
16927
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16776
16928
|
flyTo?: boolean;
|
|
@@ -16786,7 +16938,7 @@ declare namespace PointPrimitive {
|
|
|
16786
16938
|
/**
|
|
16787
16939
|
* 像素点 支持的样式信息
|
|
16788
16940
|
* @property [pixelSize = 10] - 像素大小
|
|
16789
|
-
* @property [color = "#
|
|
16941
|
+
* @property [color = "#ffffff"] - 颜色
|
|
16790
16942
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
16791
16943
|
* @property [outline = false] - 是否边框
|
|
16792
16944
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
@@ -16854,6 +17006,7 @@ declare namespace PointPrimitive {
|
|
|
16854
17006
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16855
17007
|
* @param [options.name = ''] - 矢量数据名称
|
|
16856
17008
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17009
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16857
17010
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16858
17011
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16859
17012
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16878,6 +17031,7 @@ declare class PointPrimitive extends BasePointPrimitive {
|
|
|
16878
17031
|
id?: string | number;
|
|
16879
17032
|
name?: string;
|
|
16880
17033
|
show?: boolean;
|
|
17034
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16881
17035
|
eventParent?: BaseClass | boolean;
|
|
16882
17036
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16883
17037
|
flyTo?: boolean;
|
|
@@ -16899,7 +17053,7 @@ declare namespace PolygonPrimitive {
|
|
|
16899
17053
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
16900
17054
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
16901
17055
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
16902
|
-
* @property [color = "#
|
|
17056
|
+
* @property [color = "#ffffff"] - 颜色
|
|
16903
17057
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
16904
17058
|
* @property [randomColor = false] - 是否随机颜色
|
|
16905
17059
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
@@ -17013,6 +17167,7 @@ declare namespace PolygonPrimitive {
|
|
|
17013
17167
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17014
17168
|
* @param [options.name = ''] - 矢量数据名称
|
|
17015
17169
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17170
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17016
17171
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17017
17172
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17018
17173
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17043,6 +17198,7 @@ declare class PolygonPrimitive extends BasePolyPrimitive {
|
|
|
17043
17198
|
id?: string | number;
|
|
17044
17199
|
name?: string;
|
|
17045
17200
|
show?: boolean;
|
|
17201
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17046
17202
|
eventParent?: BaseClass | boolean;
|
|
17047
17203
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17048
17204
|
flyTo?: boolean;
|
|
@@ -17069,7 +17225,7 @@ declare namespace PolylinePrimitive {
|
|
|
17069
17225
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17070
17226
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17071
17227
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17072
|
-
* @property [color = "#
|
|
17228
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17073
17229
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17074
17230
|
* @property [randomColor = false] - 是否随机颜色
|
|
17075
17231
|
* @property [colors] - 定义每顶点或每段颜色 的数组。
|
|
@@ -17150,6 +17306,7 @@ declare namespace PolylinePrimitive {
|
|
|
17150
17306
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17151
17307
|
* @param [options.name = ''] - 矢量数据名称
|
|
17152
17308
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17309
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17153
17310
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17154
17311
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17155
17312
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17180,6 +17337,7 @@ declare class PolylinePrimitive extends BasePolyPrimitive {
|
|
|
17180
17337
|
id?: string | number;
|
|
17181
17338
|
name?: string;
|
|
17182
17339
|
show?: boolean;
|
|
17340
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17183
17341
|
eventParent?: BaseClass | boolean;
|
|
17184
17342
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17185
17343
|
flyTo?: boolean;
|
|
@@ -17201,7 +17359,7 @@ declare namespace PolylineVolumePrimitive {
|
|
|
17201
17359
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17202
17360
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17203
17361
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17204
|
-
* @property [color = "#
|
|
17362
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17205
17363
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17206
17364
|
* @property [cornerType = CornerType.ROUNDED] - 指定边角的样式。
|
|
17207
17365
|
* @property [granularity = Cesium.Math.RADIANS_PER_DEGREE] - 指定每个纬度点和经度点之间的角距离。
|
|
@@ -17277,6 +17435,7 @@ declare namespace PolylineVolumePrimitive {
|
|
|
17277
17435
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17278
17436
|
* @param [options.name = ''] - 矢量数据名称
|
|
17279
17437
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17438
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17280
17439
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17281
17440
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17282
17441
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17307,6 +17466,7 @@ declare class PolylineVolumePrimitive extends BasePolyPrimitive {
|
|
|
17307
17466
|
id?: string | number;
|
|
17308
17467
|
name?: string;
|
|
17309
17468
|
show?: boolean;
|
|
17469
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17310
17470
|
eventParent?: BaseClass | boolean;
|
|
17311
17471
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17312
17472
|
flyTo?: boolean;
|
|
@@ -17320,7 +17480,7 @@ declare namespace RectanglePrimitive {
|
|
|
17320
17480
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17321
17481
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17322
17482
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17323
|
-
* @property [color = "#
|
|
17483
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17324
17484
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17325
17485
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
17326
17486
|
* @property [outline = false] - 是否边框
|
|
@@ -17399,6 +17559,7 @@ declare namespace RectanglePrimitive {
|
|
|
17399
17559
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17400
17560
|
* @param [options.name = ''] - 矢量数据名称
|
|
17401
17561
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17562
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17402
17563
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17403
17564
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17404
17565
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17430,6 +17591,7 @@ declare class RectanglePrimitive extends BasePolyPrimitive {
|
|
|
17430
17591
|
id?: string | number;
|
|
17431
17592
|
name?: string;
|
|
17432
17593
|
show?: boolean;
|
|
17594
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17433
17595
|
eventParent?: BaseClass | boolean;
|
|
17434
17596
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17435
17597
|
flyTo?: boolean;
|
|
@@ -17534,6 +17696,7 @@ declare namespace ReflectionWater {
|
|
|
17534
17696
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17535
17697
|
* @param [options.name = ''] - 矢量数据名称
|
|
17536
17698
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17699
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17537
17700
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17538
17701
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17539
17702
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17562,6 +17725,7 @@ declare class ReflectionWater extends PolygonPrimitive {
|
|
|
17562
17725
|
id?: string | number;
|
|
17563
17726
|
name?: string;
|
|
17564
17727
|
show?: boolean;
|
|
17728
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17565
17729
|
eventParent?: BaseClass | boolean;
|
|
17566
17730
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17567
17731
|
flyTo?: boolean;
|
|
@@ -17598,6 +17762,7 @@ declare namespace Road {
|
|
|
17598
17762
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17599
17763
|
* @param [options.name = ''] - 矢量数据名称
|
|
17600
17764
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17765
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17601
17766
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17602
17767
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17603
17768
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17611,6 +17776,7 @@ declare class Road extends DynamicRiver {
|
|
|
17611
17776
|
id?: string | number;
|
|
17612
17777
|
name?: string;
|
|
17613
17778
|
show?: boolean;
|
|
17779
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17614
17780
|
eventParent?: BaseClass | boolean;
|
|
17615
17781
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17616
17782
|
flyTo?: boolean;
|
|
@@ -17622,12 +17788,14 @@ declare namespace ScrollWall {
|
|
|
17622
17788
|
/**
|
|
17623
17789
|
* 走马灯围墙效果 支持的样式信息
|
|
17624
17790
|
* @property [diffHeight = 100] - 墙高
|
|
17625
|
-
* @property [color = "#
|
|
17791
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17626
17792
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17627
17793
|
* @property [speed = 10] - 速度,值越大越快
|
|
17628
17794
|
* @property [reverse = false] - 方向:true往上、false往下
|
|
17629
17795
|
* @property [style = 1] - 样式,可选值:1、2
|
|
17630
17796
|
* @property [shadows = Cesium.ShadowMode.DISABLED] - 指定对象是投射还是接收来自光源的阴影。
|
|
17797
|
+
* @property [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
|
|
17798
|
+
* @property [label] - 支持附带文字的显示
|
|
17631
17799
|
*/
|
|
17632
17800
|
type StyleOptions = any | {
|
|
17633
17801
|
diffHeight?: number;
|
|
@@ -17637,6 +17805,8 @@ declare namespace ScrollWall {
|
|
|
17637
17805
|
reverse?: boolean;
|
|
17638
17806
|
style?: number;
|
|
17639
17807
|
shadows?: Cesium.ShadowMode;
|
|
17808
|
+
highlight?: ScrollWall.StyleOptions | any;
|
|
17809
|
+
label?: LabelEntity.StyleOptions | any;
|
|
17640
17810
|
};
|
|
17641
17811
|
}
|
|
17642
17812
|
|
|
@@ -17654,6 +17824,7 @@ declare namespace ScrollWall {
|
|
|
17654
17824
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17655
17825
|
* @param [options.name = ''] - 矢量数据名称
|
|
17656
17826
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17827
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17657
17828
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17658
17829
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17659
17830
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17672,11 +17843,16 @@ declare class ScrollWall extends BasePolyPrimitive {
|
|
|
17672
17843
|
id?: string | number;
|
|
17673
17844
|
name?: string;
|
|
17674
17845
|
show?: boolean;
|
|
17846
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17675
17847
|
eventParent?: BaseClass | boolean;
|
|
17676
17848
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17677
17849
|
flyTo?: boolean;
|
|
17678
17850
|
flyToOptions?: any;
|
|
17679
17851
|
});
|
|
17852
|
+
/**
|
|
17853
|
+
* 中心点坐标 (笛卡尔坐标)
|
|
17854
|
+
*/
|
|
17855
|
+
readonly center: Cesium.Cartesian3;
|
|
17680
17856
|
/**
|
|
17681
17857
|
* 矢量数据对应的 Cesium内部对象 (不同子类中实现)
|
|
17682
17858
|
*/
|
|
@@ -17691,7 +17867,7 @@ declare namespace ThickWall {
|
|
|
17691
17867
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17692
17868
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17693
17869
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17694
|
-
* @property [color = "#
|
|
17870
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17695
17871
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17696
17872
|
* @property [closure = false] - 是否闭合
|
|
17697
17873
|
* @property [hasShadows = false] - 是否阴影
|
|
@@ -17746,6 +17922,7 @@ declare namespace ThickWall {
|
|
|
17746
17922
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17747
17923
|
* @param [options.name = ''] - 矢量数据名称
|
|
17748
17924
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17925
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17749
17926
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17750
17927
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17751
17928
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17764,6 +17941,7 @@ declare class ThickWall extends BasePolyPrimitive {
|
|
|
17764
17941
|
id?: string | number;
|
|
17765
17942
|
name?: string;
|
|
17766
17943
|
show?: boolean;
|
|
17944
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17767
17945
|
eventParent?: BaseClass | boolean;
|
|
17768
17946
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17769
17947
|
flyTo?: boolean;
|
|
@@ -17819,6 +17997,7 @@ declare namespace VideoPrimitive {
|
|
|
17819
17997
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17820
17998
|
* @param [options.name = ''] - 矢量数据名称
|
|
17821
17999
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18000
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17822
18001
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17823
18002
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17824
18003
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17849,6 +18028,7 @@ declare class VideoPrimitive extends BasePolyPrimitive {
|
|
|
17849
18028
|
id?: string | number;
|
|
17850
18029
|
name?: string;
|
|
17851
18030
|
show?: boolean;
|
|
18031
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17852
18032
|
eventParent?: BaseClass | boolean;
|
|
17853
18033
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17854
18034
|
flyTo?: boolean;
|
|
@@ -17889,7 +18069,7 @@ declare namespace WallPrimitive {
|
|
|
17889
18069
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17890
18070
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17891
18071
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17892
|
-
* @property [color = "#
|
|
18072
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17893
18073
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17894
18074
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
17895
18075
|
* @property [closure = false] - 是否闭合
|
|
@@ -17964,6 +18144,7 @@ declare namespace WallPrimitive {
|
|
|
17964
18144
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17965
18145
|
* @param [options.name = ''] - 矢量数据名称
|
|
17966
18146
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18147
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17967
18148
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17968
18149
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17969
18150
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17994,6 +18175,7 @@ declare class WallPrimitive extends BasePolyPrimitive {
|
|
|
17994
18175
|
id?: string | number;
|
|
17995
18176
|
name?: string;
|
|
17996
18177
|
show?: boolean;
|
|
18178
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17997
18179
|
eventParent?: BaseClass | boolean;
|
|
17998
18180
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17999
18181
|
flyTo?: boolean;
|
|
@@ -18111,6 +18293,7 @@ declare namespace Water {
|
|
|
18111
18293
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
18112
18294
|
* @param [options.name = ''] - 矢量数据名称
|
|
18113
18295
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18296
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
18114
18297
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
18115
18298
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
18116
18299
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -18138,6 +18321,7 @@ declare class Water extends PolygonPrimitive {
|
|
|
18138
18321
|
id?: string | number;
|
|
18139
18322
|
name?: string;
|
|
18140
18323
|
show?: boolean;
|
|
18324
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
18141
18325
|
eventParent?: BaseClass | boolean;
|
|
18142
18326
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
18143
18327
|
flyTo?: boolean;
|
|
@@ -20096,7 +20280,7 @@ declare class GraphicGroupLayer extends GroupLayer {
|
|
|
20096
20280
|
* @param [options.maxPointNum] - 线面数据时限定的最大坐标个数
|
|
20097
20281
|
* @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
|
|
20098
20282
|
* @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
|
|
20099
|
-
* @param [options.availability] -
|
|
20283
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
20100
20284
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
20101
20285
|
* @returns 绘制创建完成的Promise,等价于success参数
|
|
20102
20286
|
*/
|
|
@@ -20109,7 +20293,7 @@ declare class GraphicGroupLayer extends GroupLayer {
|
|
|
20109
20293
|
maxPointNum?: number;
|
|
20110
20294
|
drawShow?: boolean;
|
|
20111
20295
|
addHeight?: number;
|
|
20112
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
20296
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
20113
20297
|
description?: Cesium.Property | string;
|
|
20114
20298
|
}): Promise<BaseGraphic | any>;
|
|
20115
20299
|
/**
|
|
@@ -20585,7 +20769,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
|
|
|
20585
20769
|
* @param [options.validDrawPosition] - 外部自定义校验坐标,比如判断限定在指定区域内绘制。
|
|
20586
20770
|
* @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
|
|
20587
20771
|
* @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
|
|
20588
|
-
* @param [options.availability] -
|
|
20772
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
20589
20773
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
20590
20774
|
* @returns 绘制创建完成的Promise,等价于success参数
|
|
20591
20775
|
*/
|
|
@@ -20600,7 +20784,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
|
|
|
20600
20784
|
validDrawPosition?: (...params: any[]) => any;
|
|
20601
20785
|
drawShow?: boolean;
|
|
20602
20786
|
addHeight?: number;
|
|
20603
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
20787
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
20604
20788
|
description?: Cesium.Property | string;
|
|
20605
20789
|
}): Promise<BaseGraphic | any>;
|
|
20606
20790
|
/**
|
|
@@ -25746,6 +25930,8 @@ declare namespace Map {
|
|
|
25746
25930
|
* @property [terrainShadows = Cesium.ShadowMode.RECEIVE_ONLY] - 确定地形是否投射或接收来自光源的阴影。
|
|
25747
25931
|
* @property [requestRenderMode = false] - 是否显式渲染,如果为真,渲染帧只会在需要时发生,这是由场景中的变化决定的。启用可以减少你的应用程序的CPU/GPU使用量,并且在移动设备上使用更少的电池,但是需要使用 {@link Scene#requestRender} 在这种模式下显式地渲染一个新帧。在许多情况下,在API的其他部分更改场景后,这是必要的。参见 {@link https://cesium.com/blog/2018/01/24/cesium-scene-rendering-performance/|Improving Performance with Explicit Rendering}.
|
|
25748
25932
|
* @property [maximumRenderTimeChange = 0.0] - 如果requestRenderMode为true,这个值定义了在请求渲染之前允许的模拟时间的最大变化。参见 {@link https://cesium.com/blog/2018/01/24/cesium-scene-rendering-performance/|Improving Performance with Explicit Rendering}.
|
|
25933
|
+
* @property [depthPlaneEllipsoidOffset = 0.0] - 调整DepthPlane以处理椭球体零标高以下的渲染伪影。
|
|
25934
|
+
* @property [msaaSamples = 1] - 如果提供,该值控制多样本抗混叠的速率。典型的多采样率是每像素2、4,有时是8个采样。更高的MSAA采样率可能会影响性能,以换取更好的视觉质量。这个值只适用于支持多样本渲染目标的WebGL2上下文。
|
|
25749
25935
|
*
|
|
25750
25936
|
* 以下是Cesium.Globe对象相关参数
|
|
25751
25937
|
* @property [globe] - globe地球相关参数
|
|
@@ -25829,6 +26015,8 @@ declare namespace Map {
|
|
|
25829
26015
|
terrainShadows?: Cesium.ShadowMode;
|
|
25830
26016
|
requestRenderMode?: boolean;
|
|
25831
26017
|
maximumRenderTimeChange?: number;
|
|
26018
|
+
depthPlaneEllipsoidOffset?: number;
|
|
26019
|
+
msaaSamples?: number;
|
|
25832
26020
|
globe?: {
|
|
25833
26021
|
show?: boolean;
|
|
25834
26022
|
baseColor?: string;
|
|
@@ -26654,6 +26842,22 @@ declare class Map extends BaseClass {
|
|
|
26654
26842
|
complete?: Cesium.Camera.FlightCompleteCallback;
|
|
26655
26843
|
cancel?: Cesium.Camera.FlightCancelledCallback;
|
|
26656
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>;
|
|
26657
26861
|
/**
|
|
26658
26862
|
* 停止视角定位等操作
|
|
26659
26863
|
* @returns 当前对象本身,可以链式调用
|
|
@@ -27135,7 +27339,7 @@ declare class Map extends BaseClass {
|
|
|
27135
27339
|
/**
|
|
27136
27340
|
* 解除绑定指定类型事件监听器
|
|
27137
27341
|
* @param [types] - 事件类型,未传值时解绑所有事件
|
|
27138
|
-
* @param [fn] -
|
|
27342
|
+
* @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件,特殊说明:map.on监听的Cesium相关原生事件时必须传入该参数
|
|
27139
27343
|
* @param [context] - 侦听器的上下文(this关键字将指向的对象)。
|
|
27140
27344
|
* @returns 当前对象本身,可以链式调用
|
|
27141
27345
|
*/
|
|
@@ -28936,12 +29140,13 @@ declare class EchartsLayer extends BaseLayer {
|
|
|
28936
29140
|
* @param [options.style.type] - 渲染类型,支持:"image":ImageLayer图片展示, "graphic":普通RectanglePrimitive矢量矩形展示, "arc":曲面RectanglePrimitive矢量矩形展示
|
|
28937
29141
|
* @param [options.style.opacity = 1] - 透明度
|
|
28938
29142
|
* @param [options.style.height = 0] - 高度,相对于椭球面的高度。
|
|
29143
|
+
* @param [options.style.clampToGround = false] - 是否贴地
|
|
29144
|
+
* @param [options.style.多个参数] - rectangle矩形支持的样式, tip: 是指支持多个其他参数
|
|
28939
29145
|
* @param [options.style.arc = false] - 是否显示曲面热力图,同 type:"arc"
|
|
28940
29146
|
* @param [options.style.arcRadiusScale = 1.5] - 曲面热力图时,radius扩大比例
|
|
28941
29147
|
* @param [options.style.arcBlurScale = 1.5] - 曲面热力图时,blur扩大比例
|
|
28942
29148
|
* @param [options.style.arcDirection = 1] - 曲面热力图时,凹陷的方向,1向上,-1向下,0双面
|
|
28943
29149
|
* @param [options.style.diffHeight] - 曲面热力图时,曲面的起伏差值高,默认根据数据范围的比例自动计算。
|
|
28944
|
-
* @param [options.style.多个参数] - rectangle矩形支持的样式
|
|
28945
29150
|
* @param [options.maxCanvasSize = 5000] - Canvas最大尺寸(单位:像素),调大精度更高,但过大容易内存溢出
|
|
28946
29151
|
* @param [options.minCanvasSize = 700] - Canvas最小尺寸(单位:像素)
|
|
28947
29152
|
* @param [options.delayTime = 2] - 显示数据时的过渡动画时长(单位:秒)
|
|
@@ -28978,16 +29183,17 @@ declare class HeatLayer extends BaseLayer {
|
|
|
28978
29183
|
radius?: number;
|
|
28979
29184
|
gradient?: any;
|
|
28980
29185
|
};
|
|
28981
|
-
style?: {
|
|
29186
|
+
style?: any | {
|
|
28982
29187
|
type?: string;
|
|
28983
29188
|
opacity?: number;
|
|
28984
29189
|
height?: number;
|
|
29190
|
+
clampToGround?: boolean;
|
|
29191
|
+
多个参数?: any;
|
|
28985
29192
|
arc?: boolean;
|
|
28986
29193
|
arcRadiusScale?: number;
|
|
28987
29194
|
arcBlurScale?: number;
|
|
28988
29195
|
arcDirection?: number;
|
|
28989
29196
|
diffHeight?: number;
|
|
28990
|
-
多个参数?: RectanglePrimitive.StyleOptions | any;
|
|
28991
29197
|
};
|
|
28992
29198
|
maxCanvasSize?: number;
|
|
28993
29199
|
minCanvasSize?: number;
|
|
@@ -29941,6 +30147,13 @@ declare namespace Satellite {
|
|
|
29941
30147
|
* @param [options.cone] - 设置是否显示 卫星视锥体 和对应的样式
|
|
29942
30148
|
* @param [options.path] - 设置是否显示 卫星轨迹路线 和对应的样式,属性还包含:<br />
|
|
29943
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] - 设置是否显示 卫星轨迹路线 和对应的样式
|
|
29944
30157
|
* @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
|
|
29945
30158
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
29946
30159
|
* @param [options.name = ''] - 矢量数据名称
|
|
@@ -29965,6 +30178,13 @@ declare class Satellite extends Route {
|
|
|
29965
30178
|
id?: string | number;
|
|
29966
30179
|
name?: string;
|
|
29967
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;
|
|
29968
30188
|
});
|
|
29969
30189
|
/**
|
|
29970
30190
|
* 卫星TLE算法类对象
|
|
@@ -31933,8 +32153,8 @@ declare namespace Measure {
|
|
|
31933
32153
|
* @property change - 测量值变化了
|
|
31934
32154
|
* @property start - 异步测量中,开始测量
|
|
31935
32155
|
* @property end - 异步测量中,完成了测量后
|
|
31936
|
-
* @property
|
|
31937
|
-
* @property
|
|
32156
|
+
* @property addGraphic - 添加了矢量对象
|
|
32157
|
+
* @property removeGraphic - 移除了矢量对象
|
|
31938
32158
|
* @property show - 显示了对象
|
|
31939
32159
|
* @property hide - 隐藏了对象
|
|
31940
32160
|
* @property click - 左键单击 鼠标事件
|
|
@@ -31965,8 +32185,8 @@ declare namespace Measure {
|
|
|
31965
32185
|
change: string;
|
|
31966
32186
|
start: string;
|
|
31967
32187
|
end: string;
|
|
31968
|
-
|
|
31969
|
-
|
|
32188
|
+
addGraphic: string;
|
|
32189
|
+
removeGraphic: string;
|
|
31970
32190
|
show: string;
|
|
31971
32191
|
hide: string;
|
|
31972
32192
|
click: string;
|
|
@@ -32963,6 +33183,14 @@ declare class ContourLine extends TerrainEditBase {
|
|
|
32963
33183
|
* 等高线 颜色
|
|
32964
33184
|
*/
|
|
32965
33185
|
color: Cesium.Color | string;
|
|
33186
|
+
/**
|
|
33187
|
+
* 地表渲染配色方案中的 最低海拔高度
|
|
33188
|
+
*/
|
|
33189
|
+
minHeight: number;
|
|
33190
|
+
/**
|
|
33191
|
+
* 地表渲染配色方案中的 最高海拔高度
|
|
33192
|
+
*/
|
|
33193
|
+
maxHeight: number;
|
|
32966
33194
|
/**
|
|
32967
33195
|
* 是否显示区域外的地图
|
|
32968
33196
|
*/
|
|
@@ -33533,7 +33761,7 @@ declare class TerrainUplift extends TerrainEditBase {
|
|
|
33533
33761
|
* @param [options.positions] - 限高区域坐标数组
|
|
33534
33762
|
* @param [options.height] - 限高高度(单位米),相对于bottomHeight模型地面的海拔高度的相对高度。
|
|
33535
33763
|
* @param [options.bottomHeight] - 模型地面的海拔高度(单位米)
|
|
33536
|
-
* @param [options.color = "#
|
|
33764
|
+
* @param [options.color = "#ffffff"] - 颜色
|
|
33537
33765
|
* @param [options.id = createGuid()] - 对象的id标识
|
|
33538
33766
|
* @param [options.enabled = true] - 对象的启用状态
|
|
33539
33767
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
|
|
@@ -35610,6 +35838,14 @@ declare namespace PointUtil {
|
|
|
35610
35838
|
* @returns 反射向量
|
|
35611
35839
|
*/
|
|
35612
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;
|
|
35613
35849
|
}
|
|
35614
35850
|
|
|
35615
35851
|
/**
|
|
@@ -36283,6 +36519,25 @@ declare namespace Util {
|
|
|
36283
36519
|
opacity?: number;
|
|
36284
36520
|
randomColor?: boolean;
|
|
36285
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;
|
|
36286
36541
|
/**
|
|
36287
36542
|
* 取属性值,简化Cesium内的属性,去掉getValue等,取最简的键值对。
|
|
36288
36543
|
* 方便popup、tooltip等构造方法使用
|
|
@@ -36934,8 +37189,6 @@ declare namespace layer {
|
|
|
36934
37189
|
export { EchartsLayer }
|
|
36935
37190
|
export { HeatLayer }
|
|
36936
37191
|
export { MapVLayer }
|
|
36937
|
-
export { SmImgLayer }
|
|
36938
|
-
export { SmMvtLayer }
|
|
36939
37192
|
export { TdtDmLayer }
|
|
36940
37193
|
}
|
|
36941
37194
|
|
|
@@ -36993,7 +37246,7 @@ declare namespace thing {
|
|
|
36993
37246
|
|
|
36994
37247
|
export {
|
|
36995
37248
|
name, update, version, proj4, Tle, widget,
|
|
36996
|
-
BaseClass, BaseThing, LngLatPoint, LngLatArray, GroundSkyBox, MultipleSkyBox, LocalWorldTransform, CRS, ChinaCRS, EventType, State, Token, MaterialType, GraphicType, LayerType, ControlType, EffectType, Lang, LangType, MoveType, ClipType, Icon,
|
|
37249
|
+
BaseClass, BaseThing, LngLatPoint, LngLatArray, GroundSkyBox, MultipleSkyBox, LocalWorldTransform, CRS, ChinaCRS, EventType, State, Token, ColorRamp, MaterialType, GraphicType, LayerType, ControlType, EffectType, Lang, LangType, MoveType, ClipType, Icon,
|
|
36997
37250
|
DomUtil, MeasureUtil, PointUtil, PolyUtil, PointTrans, Util, Log, MaterialUtil, GraphicUtil, DrawUtil, LayerUtil, ControlUtil, EffectUtil,
|
|
36998
37251
|
BaseMaterialConver, BaseStyleConver, BillboardStyleConver, CloudStyleConver, BoxStyleConver, CircleStyleConver, CorridorStyleConver, CylinderStyleConver, DivGraphicStyleConver, EllipsoidStyleConver, LabelStyleConver, ModelStyleConver, PathStyleConver, PlaneStyleConver, PointStyleConver, PolygonStyleConver, PolylineStyleConver, PolylineVolumeStyleConver, RectangleStyleConver, RectangularSensorStyleConver, WallStyleConver,
|
|
36999
37252
|
material, graphic, provider, layer, thing, effect, control, query,
|