mars3d 3.6.2 → 3.6.4
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 +602 -276
- package/dist/mars3d.js +3 -3
- package/package.json +2 -2
package/dist/mars3d.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Mars3D三维可视化平台 mars3d
|
|
4
4
|
*
|
|
5
|
-
* 版本信息:v3.6.
|
|
6
|
-
* 编译日期:2023-
|
|
5
|
+
* 版本信息:v3.6.4
|
|
6
|
+
* 编译日期:2023-09-05 22:31:54
|
|
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,
|
|
@@ -2002,12 +2003,14 @@ declare class ProjectionPicker extends BaseCzmControl {
|
|
|
2002
2003
|
/**
|
|
2003
2004
|
* 二三维切换按钮 控件 (Cesium原生)
|
|
2004
2005
|
* @param [options] - 参数对象,包括以下:
|
|
2006
|
+
* @param [options.duration = 0] - 切换时动画的秒数
|
|
2005
2007
|
* @param [options.id = createGuid()] - 对象的id标识
|
|
2006
2008
|
* @param [options.enabled = true] - 对象的启用状态
|
|
2007
2009
|
* @param [options.parentContainer] - 控件加入的父容器,默认为map所在的DOM map.toolbar
|
|
2008
2010
|
*/
|
|
2009
2011
|
declare class SceneModePicker extends BaseCzmControl {
|
|
2010
2012
|
constructor(options?: {
|
|
2013
|
+
duration?: number;
|
|
2011
2014
|
id?: string | number;
|
|
2012
2015
|
enabled?: boolean;
|
|
2013
2016
|
parentContainer?: HTMLElement;
|
|
@@ -2036,7 +2039,7 @@ declare class Timeline extends BaseCzmControl {
|
|
|
2036
2039
|
constructor(options?: {
|
|
2037
2040
|
zoom?: boolean;
|
|
2038
2041
|
maxSpan?: number;
|
|
2039
|
-
style?: {
|
|
2042
|
+
style?: any | {
|
|
2040
2043
|
top?: string;
|
|
2041
2044
|
bottom?: string;
|
|
2042
2045
|
left?: string;
|
|
@@ -2159,6 +2162,7 @@ declare namespace LocationBar {
|
|
|
2159
2162
|
* 【鼠标所在位置】 经度:{lng}, 纬度:{lat}, 海拔:{alt}米, 横{crsx} 纵{crsy}
|
|
2160
2163
|
* 【相机的】 方向角度:{heading}, 俯仰角度:{pitch}, 视高:{cameraHeight}米,
|
|
2161
2164
|
* 【地图的】 层级:{level}
|
|
2165
|
+
* 【地图的】 每秒帧率:{fps} (越高越流畅),延迟:{ms} 毫秒 (越小越流畅)
|
|
2162
2166
|
* @param [options.latDecimal = LngLatPoint.FormatLength] - 保留的{lat}和{lng}的小数位
|
|
2163
2167
|
* @param [options.crs] - 按指定坐标系显示坐标值,true时取值CRS.CGCS2000_GK_Zone_3,配置后template可以加模板:【鼠标所在位置对应的crs坐标系】 X或经度值:{crsx}, Y或纬度值:{crsy}
|
|
2164
2168
|
* @param [options.crsDecimal = 1] - 保留的{crsx}和{crsy}的小数位
|
|
@@ -2167,7 +2171,6 @@ declare namespace LocationBar {
|
|
|
2167
2171
|
* @param [options.style.bottom] - css定位bottom位置
|
|
2168
2172
|
* @param [options.style.left] - css定位left位置
|
|
2169
2173
|
* @param [options.style.right] - css定位right位置
|
|
2170
|
-
* @param [options.fps = false] - 是否显示实时FPS帧率
|
|
2171
2174
|
* @param [options.cacheTime = 50] - 鼠标移动的缓存时间
|
|
2172
2175
|
* @param [options.id = createGuid()] - 对象的id标识
|
|
2173
2176
|
* @param [options.enabled = true] - 对象的启用状态
|
|
@@ -2181,13 +2184,12 @@ declare class LocationBar extends BaseControl {
|
|
|
2181
2184
|
latDecimal?: number;
|
|
2182
2185
|
crs?: string | CRS | boolean;
|
|
2183
2186
|
crsDecimal?: number;
|
|
2184
|
-
style?: {
|
|
2187
|
+
style?: any | {
|
|
2185
2188
|
top?: string;
|
|
2186
2189
|
bottom?: string;
|
|
2187
2190
|
left?: string;
|
|
2188
2191
|
right?: string;
|
|
2189
2192
|
};
|
|
2190
|
-
fps?: boolean;
|
|
2191
2193
|
cacheTime?: number;
|
|
2192
2194
|
id?: string | number;
|
|
2193
2195
|
enabled?: boolean;
|
|
@@ -2363,7 +2365,7 @@ declare class OverviewMap extends BaseControl {
|
|
|
2363
2365
|
scene?: Map.sceneOptions;
|
|
2364
2366
|
control?: Map.controlOptions;
|
|
2365
2367
|
rectangle?: RectangleEntity.StyleOptions | any;
|
|
2366
|
-
style?: {
|
|
2368
|
+
style?: any | {
|
|
2367
2369
|
top?: string;
|
|
2368
2370
|
bottom?: string;
|
|
2369
2371
|
left?: string;
|
|
@@ -2514,7 +2516,7 @@ declare class BaseClass {
|
|
|
2514
2516
|
/**
|
|
2515
2517
|
* 解除绑定指定类型事件监听器
|
|
2516
2518
|
* @param [types] - 事件类型,未传值时解绑所有事件
|
|
2517
|
-
* @param [fn] -
|
|
2519
|
+
* @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件,特殊说明:map.on监听的Cesium相关原生事件时必须传入该参数
|
|
2518
2520
|
* @param [context] - 侦听器的上下文(this关键字将指向的对象)。
|
|
2519
2521
|
* @returns 当前对象本身,可以链式调用
|
|
2520
2522
|
*/
|
|
@@ -3333,13 +3335,13 @@ declare class BloomEffect extends BaseEffect {
|
|
|
3333
3335
|
* @param [options.color = Cesium.Color.WHITE] - 泛光颜色
|
|
3334
3336
|
* @param [options.contrast = 128] - 对比度,取值范围[-255.0,255.0]
|
|
3335
3337
|
* @param [options.brightness = -0.3] - 亮度, 将输入纹理的RGB值转换为色相、饱和度和亮度(HSB),然后将该值添加到亮度中。
|
|
3338
|
+
* @param [options.ratio = 2.0] - 亮度增强比例
|
|
3339
|
+
* @param [options.threshold = 0.0] - 亮度阈值
|
|
3340
|
+
* @param [options.smoothWidth = 0.01] - 亮度光滑的宽度
|
|
3336
3341
|
* @param [options.blurSamples = 32.0] - 模糊样本
|
|
3337
3342
|
* @param [options.delta = 1.0] - 增量
|
|
3338
3343
|
* @param [options.sigma = 3.78] - delta和sigma用于计算高斯滤波器的权值。方程是 <code>exp((-0.5 * delta * delta) / (sigma * sigma))</code>。
|
|
3339
3344
|
* @param [options.stepSize = 5.0] - 步长,是下一个texel的距离
|
|
3340
|
-
* @param [options.ratio = 2.0] - 亮度增强比例
|
|
3341
|
-
* @param [options.threshold = 0.0] - 亮度阈值
|
|
3342
|
-
* @param [options.smoothWidth = 0.01] - 亮度光滑的宽度
|
|
3343
3345
|
* @param [options.objectsToExclude] - 排除不拾取的对象,支持TilesetLayer或Graphic对象
|
|
3344
3346
|
* @param [options.enabled = true] - 对象的启用状态
|
|
3345
3347
|
*/
|
|
@@ -3349,24 +3351,60 @@ declare class BloomTargetEffect extends BaseEffect {
|
|
|
3349
3351
|
color?: Cesium.Color;
|
|
3350
3352
|
contrast?: number;
|
|
3351
3353
|
brightness?: number;
|
|
3354
|
+
ratio?: number;
|
|
3355
|
+
threshold?: number;
|
|
3356
|
+
smoothWidth?: number;
|
|
3352
3357
|
blurSamples?: number;
|
|
3353
3358
|
delta?: number;
|
|
3354
3359
|
sigma?: number;
|
|
3355
3360
|
stepSize?: number;
|
|
3356
|
-
ratio?: number;
|
|
3357
|
-
threshold?: number;
|
|
3358
|
-
smoothWidth?: number;
|
|
3359
3361
|
objectsToExclude?: any[];
|
|
3360
3362
|
enabled?: boolean;
|
|
3361
3363
|
});
|
|
3364
|
+
/**
|
|
3365
|
+
* 高亮触发的事件类型,默认为单击。
|
|
3366
|
+
*/
|
|
3367
|
+
eventType: EventType | string;
|
|
3362
3368
|
/**
|
|
3363
3369
|
* 发光颜色
|
|
3364
3370
|
*/
|
|
3365
3371
|
color: Cesium.Color;
|
|
3366
3372
|
/**
|
|
3367
|
-
*
|
|
3373
|
+
* 对比度,取值范围[-255.0,255.0]
|
|
3368
3374
|
*/
|
|
3369
|
-
|
|
3375
|
+
contrast: number;
|
|
3376
|
+
/**
|
|
3377
|
+
* 亮度, 将输入纹理的RGB值转换为色相、饱和度和亮度(HSB),然后将该值添加到亮度中。
|
|
3378
|
+
*/
|
|
3379
|
+
brightness: number;
|
|
3380
|
+
/**
|
|
3381
|
+
* 模糊样本
|
|
3382
|
+
*/
|
|
3383
|
+
blurSamples: number;
|
|
3384
|
+
/**
|
|
3385
|
+
* 增量
|
|
3386
|
+
*/
|
|
3387
|
+
delta: number;
|
|
3388
|
+
/**
|
|
3389
|
+
* delta和sigma用于计算高斯滤波器的权值。方程是 <code>exp((-0.5 * delta * delta) / (sigma * sigma))</code>。
|
|
3390
|
+
*/
|
|
3391
|
+
sigma: number;
|
|
3392
|
+
/**
|
|
3393
|
+
* 步长,是下一个texel的距离
|
|
3394
|
+
*/
|
|
3395
|
+
stepSize: number;
|
|
3396
|
+
/**
|
|
3397
|
+
* 亮度增强比例
|
|
3398
|
+
*/
|
|
3399
|
+
ratio: number;
|
|
3400
|
+
/**
|
|
3401
|
+
* 亮度阈值
|
|
3402
|
+
*/
|
|
3403
|
+
threshold: number;
|
|
3404
|
+
/**
|
|
3405
|
+
* 亮度光滑的宽度
|
|
3406
|
+
*/
|
|
3407
|
+
smoothWidth: number;
|
|
3370
3408
|
/**
|
|
3371
3409
|
* 选中对象 ,仅支持Primitive、3DTiles Feature等部分对象
|
|
3372
3410
|
*/
|
|
@@ -3501,7 +3539,7 @@ declare namespace OutlineEffect {
|
|
|
3501
3539
|
* @property [width = 6] - 线宽,单位:像素px
|
|
3502
3540
|
* @property [color = Cesium.Color.WHITE] - 轮廓线 颜色
|
|
3503
3541
|
* @property [colorHidden = color] - 被遮挡的轮廓线 颜色
|
|
3504
|
-
* @property [showPlane = false] - 是否显示边缘同一个平面(按
|
|
3542
|
+
* @property [showPlane = false] - 是否显示边缘同一个平面(按planeAngle属性定义)
|
|
3505
3543
|
* @property [planeAngle = 10] - 如果两个三角面的法线间夹角小于该值 则标记为同一个平面。该值的单位:角度
|
|
3506
3544
|
* @property [glow = false] - 是否显示发光
|
|
3507
3545
|
* @property [glowPower = 1] - 发光强度
|
|
@@ -3536,6 +3574,10 @@ declare class OutlineEffect extends BaseEffect {
|
|
|
3536
3574
|
* 选中对象 ,仅支持Primitive、3DTiles Feature等部分对象
|
|
3537
3575
|
*/
|
|
3538
3576
|
selected: any | any | undefined;
|
|
3577
|
+
/**
|
|
3578
|
+
* 线宽,单位:像素px
|
|
3579
|
+
*/
|
|
3580
|
+
width: number;
|
|
3539
3581
|
/**
|
|
3540
3582
|
* 轮廓线 颜色
|
|
3541
3583
|
*/
|
|
@@ -3545,21 +3587,13 @@ declare class OutlineEffect extends BaseEffect {
|
|
|
3545
3587
|
*/
|
|
3546
3588
|
colorHidden: string | Cesium.Color;
|
|
3547
3589
|
/**
|
|
3548
|
-
*
|
|
3549
|
-
*/
|
|
3550
|
-
planeAngle: number;
|
|
3551
|
-
/**
|
|
3552
|
-
* 高亮触发的事件类型,默认为单击。
|
|
3553
|
-
*/
|
|
3554
|
-
eventType: EventType | string;
|
|
3555
|
-
/**
|
|
3556
|
-
* 轮廓线 宽度,单位:像素px
|
|
3590
|
+
* 是否显示边缘同一个平面(按planeAngle属性定义)
|
|
3557
3591
|
*/
|
|
3558
|
-
|
|
3592
|
+
showPlane: boolean;
|
|
3559
3593
|
/**
|
|
3560
|
-
*
|
|
3594
|
+
* 如果两个三角面的法线间夹角小于该值 则标记为同一个平面。该值的单位:角度
|
|
3561
3595
|
*/
|
|
3562
|
-
|
|
3596
|
+
planeAngle: number;
|
|
3563
3597
|
/**
|
|
3564
3598
|
* 是否显示发光
|
|
3565
3599
|
*/
|
|
@@ -3573,9 +3607,9 @@ declare class OutlineEffect extends BaseEffect {
|
|
|
3573
3607
|
*/
|
|
3574
3608
|
glowStrength: number;
|
|
3575
3609
|
/**
|
|
3576
|
-
*
|
|
3610
|
+
* 高亮触发的事件类型,默认为单击。
|
|
3577
3611
|
*/
|
|
3578
|
-
|
|
3612
|
+
eventType: EventType | string;
|
|
3579
3613
|
}
|
|
3580
3614
|
|
|
3581
3615
|
/**
|
|
@@ -3637,12 +3671,18 @@ declare class SnowCoverEffect extends BaseEffect {
|
|
|
3637
3671
|
* @param [options] - 参数对象,包括以下:
|
|
3638
3672
|
* @param [options.enabled = true] - 对象的启用状态
|
|
3639
3673
|
* @param [options.speed = 10] - 速度
|
|
3674
|
+
* @param [options.maxHeight = 9000] - 最大高度,限定超出该高度不显示积雪效果
|
|
3640
3675
|
*/
|
|
3641
3676
|
declare class SnowEffect extends BaseEffect {
|
|
3642
3677
|
constructor(options?: {
|
|
3643
3678
|
enabled?: boolean;
|
|
3644
3679
|
speed?: number;
|
|
3680
|
+
maxHeight?: number;
|
|
3645
3681
|
});
|
|
3682
|
+
/**
|
|
3683
|
+
* 最高限定高度,超出该高度不显示积雪效果
|
|
3684
|
+
*/
|
|
3685
|
+
maxHeight: number;
|
|
3646
3686
|
/**
|
|
3647
3687
|
* 速度
|
|
3648
3688
|
*/
|
|
@@ -3830,6 +3870,44 @@ declare class BaseGraphic extends BaseClass {
|
|
|
3830
3870
|
* 显示隐藏状态
|
|
3831
3871
|
*/
|
|
3832
3872
|
show: boolean;
|
|
3873
|
+
/**
|
|
3874
|
+
* 指定时间范围内显示该对象 [提示:仅部分子类实现,非所有对象都支持]
|
|
3875
|
+
* @example
|
|
3876
|
+
* // cesium原生写法,单个
|
|
3877
|
+
* graphic.availability = new Cesium.TimeInterval({
|
|
3878
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
3879
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
3880
|
+
* isStartIncluded: true,
|
|
3881
|
+
* isStopIncluded: false
|
|
3882
|
+
* })
|
|
3883
|
+
*
|
|
3884
|
+
* // cesium原生写法, 多个
|
|
3885
|
+
* graphic.availability = new Cesium.TimeIntervalCollection([
|
|
3886
|
+
* new Cesium.TimeInterval({
|
|
3887
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
3888
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
3889
|
+
* isStartIncluded: true,
|
|
3890
|
+
* isStopIncluded: false
|
|
3891
|
+
* }),
|
|
3892
|
+
*
|
|
3893
|
+
* ])
|
|
3894
|
+
*
|
|
3895
|
+
* // 普通传值方式,多个
|
|
3896
|
+
* graphic.availability = [
|
|
3897
|
+
* { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
|
|
3898
|
+
* { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
|
|
3899
|
+
* ]
|
|
3900
|
+
*
|
|
3901
|
+
* // 普通传值方式,单个
|
|
3902
|
+
* graphic.availability = { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false }
|
|
3903
|
+
*/
|
|
3904
|
+
availability: Cesium.TimeIntervalCollection;
|
|
3905
|
+
/**
|
|
3906
|
+
* 获取指定时间下的时序对应的 显示隐藏 状态
|
|
3907
|
+
* @param time - 指定时间
|
|
3908
|
+
* @returns 显示隐藏 状态
|
|
3909
|
+
*/
|
|
3910
|
+
getAvailabilityShow(time: Cesium.JulianDate): boolean;
|
|
3833
3911
|
/**
|
|
3834
3912
|
* 名称
|
|
3835
3913
|
*/
|
|
@@ -4219,7 +4297,7 @@ declare class BaseCombine extends BasePrimitive {
|
|
|
4219
4297
|
/**
|
|
4220
4298
|
* 更新颜色, 只对纯色材质有效,其他材质无法单独更新,需要setStle方法调用(全部更新渲染)。
|
|
4221
4299
|
* @param style - 样式信息
|
|
4222
|
-
* @param [style.color = "#
|
|
4300
|
+
* @param [style.color = "#ffffff"] - 颜色
|
|
4223
4301
|
* @param [style.opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
4224
4302
|
* @param [index] - 更新的instances对象index值,为空时更新所有对象。
|
|
4225
4303
|
* @returns 空
|
|
@@ -4260,6 +4338,7 @@ declare class BaseCombine extends BasePrimitive {
|
|
|
4260
4338
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4261
4339
|
* @param [options.name = ''] - 矢量数据名称
|
|
4262
4340
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4341
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4263
4342
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4264
4343
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4265
4344
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4296,6 +4375,7 @@ declare class BasePointCombine extends BasePolyCombine {
|
|
|
4296
4375
|
id?: string | number;
|
|
4297
4376
|
name?: string;
|
|
4298
4377
|
show?: boolean;
|
|
4378
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4299
4379
|
eventParent?: BaseClass | boolean;
|
|
4300
4380
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4301
4381
|
flyTo?: boolean;
|
|
@@ -4340,6 +4420,7 @@ declare class BasePointCombine extends BasePolyCombine {
|
|
|
4340
4420
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4341
4421
|
* @param [options.name = ''] - 矢量数据名称
|
|
4342
4422
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4423
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4343
4424
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4344
4425
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4345
4426
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4376,6 +4457,7 @@ declare class BasePolyCombine extends BaseCombine {
|
|
|
4376
4457
|
id?: string | number;
|
|
4377
4458
|
name?: string;
|
|
4378
4459
|
show?: boolean;
|
|
4460
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4379
4461
|
eventParent?: BaseClass | boolean;
|
|
4380
4462
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4381
4463
|
flyTo?: boolean;
|
|
@@ -4437,6 +4519,7 @@ declare class BasePolyCombine extends BaseCombine {
|
|
|
4437
4519
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4438
4520
|
* @param [options.name = ''] - 矢量数据名称
|
|
4439
4521
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4522
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4440
4523
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4441
4524
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4442
4525
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4473,6 +4556,7 @@ declare class BoxCombine extends BasePointCombine {
|
|
|
4473
4556
|
id?: string | number;
|
|
4474
4557
|
name?: string;
|
|
4475
4558
|
show?: boolean;
|
|
4559
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4476
4560
|
eventParent?: BaseClass | boolean;
|
|
4477
4561
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4478
4562
|
flyTo?: boolean;
|
|
@@ -4510,6 +4594,7 @@ declare class BoxCombine extends BasePointCombine {
|
|
|
4510
4594
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4511
4595
|
* @param [options.name = ''] - 矢量数据名称
|
|
4512
4596
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4597
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4513
4598
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4514
4599
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4515
4600
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4546,6 +4631,7 @@ declare class CircleCombine extends BasePointCombine {
|
|
|
4546
4631
|
id?: string | number;
|
|
4547
4632
|
name?: string;
|
|
4548
4633
|
show?: boolean;
|
|
4634
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4549
4635
|
eventParent?: BaseClass | boolean;
|
|
4550
4636
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4551
4637
|
flyTo?: boolean;
|
|
@@ -4583,6 +4669,7 @@ declare class CircleCombine extends BasePointCombine {
|
|
|
4583
4669
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4584
4670
|
* @param [options.name = ''] - 矢量数据名称
|
|
4585
4671
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4672
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4586
4673
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4587
4674
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4588
4675
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4619,6 +4706,7 @@ declare class CorridorCombine extends BasePolyCombine {
|
|
|
4619
4706
|
id?: string | number;
|
|
4620
4707
|
name?: string;
|
|
4621
4708
|
show?: boolean;
|
|
4709
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4622
4710
|
eventParent?: BaseClass | boolean;
|
|
4623
4711
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4624
4712
|
flyTo?: boolean;
|
|
@@ -4656,6 +4744,7 @@ declare class CorridorCombine extends BasePolyCombine {
|
|
|
4656
4744
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4657
4745
|
* @param [options.name = ''] - 矢量数据名称
|
|
4658
4746
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4747
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4659
4748
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4660
4749
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4661
4750
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4692,6 +4781,7 @@ declare class CylinderCombine extends BasePointCombine {
|
|
|
4692
4781
|
id?: string | number;
|
|
4693
4782
|
name?: string;
|
|
4694
4783
|
show?: boolean;
|
|
4784
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4695
4785
|
eventParent?: BaseClass | boolean;
|
|
4696
4786
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4697
4787
|
flyTo?: boolean;
|
|
@@ -4729,6 +4819,7 @@ declare class CylinderCombine extends BasePointCombine {
|
|
|
4729
4819
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4730
4820
|
* @param [options.name = ''] - 矢量数据名称
|
|
4731
4821
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4822
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4732
4823
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4733
4824
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4734
4825
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4765,6 +4856,7 @@ declare class EllipsoidCombine extends BasePointCombine {
|
|
|
4765
4856
|
id?: string | number;
|
|
4766
4857
|
name?: string;
|
|
4767
4858
|
show?: boolean;
|
|
4859
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4768
4860
|
eventParent?: BaseClass | boolean;
|
|
4769
4861
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4770
4862
|
flyTo?: boolean;
|
|
@@ -4802,6 +4894,7 @@ declare namespace FlatBillboard {
|
|
|
4802
4894
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4803
4895
|
* @param [options.name = ''] - 矢量数据名称
|
|
4804
4896
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4897
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4805
4898
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4806
4899
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4807
4900
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4821,6 +4914,7 @@ declare class FlatBillboard extends BaseCombine {
|
|
|
4821
4914
|
id?: string | number;
|
|
4822
4915
|
name?: string;
|
|
4823
4916
|
show?: boolean;
|
|
4917
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4824
4918
|
eventParent?: BaseClass | boolean;
|
|
4825
4919
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4826
4920
|
flyTo?: boolean;
|
|
@@ -4849,79 +4943,6 @@ declare class FlatBillboard extends BaseCombine {
|
|
|
4849
4943
|
redraw(style?: any): BasePrimitive;
|
|
4850
4944
|
}
|
|
4851
4945
|
|
|
4852
|
-
/**
|
|
4853
|
-
* 大数据 四棱锥体 集合 (合并渲染) Primitive图元 矢量对象
|
|
4854
|
-
* @param options - 参数对象,包括以下:
|
|
4855
|
-
* @param [options.instances] - 面信息数组,单个对象包括:
|
|
4856
|
-
* @param options.instances.position - 坐标位置
|
|
4857
|
-
* @param [options.instances.style] - 样式信息
|
|
4858
|
-
* @param [options.instances.attr] - 矢量数据的 属性信息,可以任意附加属性。
|
|
4859
|
-
* @param [options.style] - 所有面的公共样式信息
|
|
4860
|
-
* @param [options.highlight] - 鼠标移入或单击后的对应高亮的部分样式(仅支持Color纯色材质)
|
|
4861
|
-
* @param [options.highlight.type] - 触发高亮的方式,默认鼠标移入,可以指定为type:'click'为单击后高亮
|
|
4862
|
-
* @param [options.appearance] - [cesium原生]用于渲染图元的外观。
|
|
4863
|
-
* @param [options.attributes] - [cesium原生]每个实例的属性。
|
|
4864
|
-
* @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
|
|
4865
|
-
* @param [options.vertexCacheOptimize = false] - 当true,几何顶点优化前和后顶点着色缓存。
|
|
4866
|
-
* @param [options.interleave = false] - 当true时,几何顶点属性被交叉,这可以略微提高渲染性能,但会增加加载时间。
|
|
4867
|
-
* @param [options.compressVertices = true] - 当true时,几何顶点被压缩,这将节省内存。提升效率。
|
|
4868
|
-
* @param [options.releaseGeometryInstances = true] - 当true时,图元不保留对输入geometryInstances的引用以节省内存。
|
|
4869
|
-
* @param [options.allowPicking = true] - 当true时,每个几何图形实例只能通过{@link Scene#pick}进行挑选。当false时,保存GPU内存。
|
|
4870
|
-
* @param [options.cull = true] - 当true时,渲染器会根据图元的边界体积来剔除它们的截锥和地平线。设置为false,如果你手动剔除图元,可以获得较小的性能提升。
|
|
4871
|
-
* @param [options.asynchronous = true] - 确定该图元是异步创建还是阻塞创建,直到就绪。
|
|
4872
|
-
* @param [options.debugShowBoundingVolume = false] - 仅供调试。确定该图元命令的边界球是否显示。
|
|
4873
|
-
* @param [options.debugShowShadowVolume = false] - 仅供调试。贴地时,确定是否绘制了图元中每个几何图形的阴影体积。必须是true创建卷之前要释放几何图形或选项。releaseGeometryInstance必须是false。
|
|
4874
|
-
* @param [options.popup] - 绑定的popup弹窗值,也可以bindPopup方法绑定
|
|
4875
|
-
* @param [options.popupOptions] - popup弹窗时的配置参数
|
|
4876
|
-
* @param [options.tooltip] - 绑定的tooltip弹窗值,也可以bindTooltip方法绑
|
|
4877
|
-
* @param [options.tooltipOptions] - tooltip弹窗时的配置参数
|
|
4878
|
-
* @param [options.contextmenuItems] - 当矢量数据支持右键菜单时,也可以bindContextMenu方法绑定
|
|
4879
|
-
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4880
|
-
* @param [options.name = ''] - 矢量数据名称
|
|
4881
|
-
* @param [options.show = true] - 矢量数据是否显示
|
|
4882
|
-
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4883
|
-
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4884
|
-
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
4885
|
-
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
4886
|
-
*/
|
|
4887
|
-
declare class FrustumCombine extends BasePointCombine {
|
|
4888
|
-
constructor(options: {
|
|
4889
|
-
instances?: {
|
|
4890
|
-
position: LngLatPoint | Cesium.Cartesian3 | any[] | any;
|
|
4891
|
-
style?: FrustumPrimitive.StyleOptions | any;
|
|
4892
|
-
attr?: any;
|
|
4893
|
-
}[];
|
|
4894
|
-
style?: FrustumPrimitive.StyleOptions | any;
|
|
4895
|
-
highlight?: {
|
|
4896
|
-
type?: string;
|
|
4897
|
-
};
|
|
4898
|
-
appearance?: Cesium.Appearance;
|
|
4899
|
-
attributes?: Cesium.Appearance;
|
|
4900
|
-
depthFailAppearance?: Cesium.Appearance;
|
|
4901
|
-
vertexCacheOptimize?: boolean;
|
|
4902
|
-
interleave?: boolean;
|
|
4903
|
-
compressVertices?: boolean;
|
|
4904
|
-
releaseGeometryInstances?: boolean;
|
|
4905
|
-
allowPicking?: boolean;
|
|
4906
|
-
cull?: boolean;
|
|
4907
|
-
asynchronous?: boolean;
|
|
4908
|
-
debugShowBoundingVolume?: boolean;
|
|
4909
|
-
debugShowShadowVolume?: boolean;
|
|
4910
|
-
popup?: string | any[] | ((...params: any[]) => any);
|
|
4911
|
-
popupOptions?: Popup.StyleOptions | any;
|
|
4912
|
-
tooltip?: string | any[] | ((...params: any[]) => any);
|
|
4913
|
-
tooltipOptions?: Tooltip.StyleOptions | any;
|
|
4914
|
-
contextmenuItems?: any;
|
|
4915
|
-
id?: string | number;
|
|
4916
|
-
name?: string;
|
|
4917
|
-
show?: boolean;
|
|
4918
|
-
eventParent?: BaseClass | boolean;
|
|
4919
|
-
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4920
|
-
flyTo?: boolean;
|
|
4921
|
-
flyToOptions?: any;
|
|
4922
|
-
});
|
|
4923
|
-
}
|
|
4924
|
-
|
|
4925
4946
|
/**
|
|
4926
4947
|
* 大数据 平面 集合 (合并渲染) Primitive图元 矢量对象
|
|
4927
4948
|
* @param options - 参数对象,包括以下:
|
|
@@ -4952,6 +4973,7 @@ declare class FrustumCombine extends BasePointCombine {
|
|
|
4952
4973
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
4953
4974
|
* @param [options.name = ''] - 矢量数据名称
|
|
4954
4975
|
* @param [options.show = true] - 矢量数据是否显示
|
|
4976
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
4955
4977
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
4956
4978
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
4957
4979
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -4988,6 +5010,7 @@ declare class PlaneCombine extends BasePointCombine {
|
|
|
4988
5010
|
id?: string | number;
|
|
4989
5011
|
name?: string;
|
|
4990
5012
|
show?: boolean;
|
|
5013
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
4991
5014
|
eventParent?: BaseClass | boolean;
|
|
4992
5015
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
4993
5016
|
flyTo?: boolean;
|
|
@@ -5025,6 +5048,7 @@ declare class PlaneCombine extends BasePointCombine {
|
|
|
5025
5048
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5026
5049
|
* @param [options.name = ''] - 矢量数据名称
|
|
5027
5050
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5051
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5028
5052
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5029
5053
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5030
5054
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5059,6 +5083,7 @@ declare class PolygonCombine extends BasePolyCombine {
|
|
|
5059
5083
|
id?: string | number;
|
|
5060
5084
|
name?: string;
|
|
5061
5085
|
show?: boolean;
|
|
5086
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5062
5087
|
eventParent?: BaseClass | boolean;
|
|
5063
5088
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5064
5089
|
flyTo?: boolean;
|
|
@@ -5096,6 +5121,7 @@ declare class PolygonCombine extends BasePolyCombine {
|
|
|
5096
5121
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5097
5122
|
* @param [options.name = ''] - 矢量数据名称
|
|
5098
5123
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5124
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5099
5125
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5100
5126
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5101
5127
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5132,6 +5158,7 @@ declare class PolylineCombine extends BasePolyCombine {
|
|
|
5132
5158
|
id?: string | number;
|
|
5133
5159
|
name?: string;
|
|
5134
5160
|
show?: boolean;
|
|
5161
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5135
5162
|
eventParent?: BaseClass | boolean;
|
|
5136
5163
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5137
5164
|
flyTo?: boolean;
|
|
@@ -5169,6 +5196,7 @@ declare class PolylineCombine extends BasePolyCombine {
|
|
|
5169
5196
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5170
5197
|
* @param [options.name = ''] - 矢量数据名称
|
|
5171
5198
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5199
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5172
5200
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5173
5201
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5174
5202
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5205,6 +5233,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
|
|
|
5205
5233
|
id?: string | number;
|
|
5206
5234
|
name?: string;
|
|
5207
5235
|
show?: boolean;
|
|
5236
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5208
5237
|
eventParent?: BaseClass | boolean;
|
|
5209
5238
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5210
5239
|
flyTo?: boolean;
|
|
@@ -5242,6 +5271,7 @@ declare class PolylineVolumeCombine extends BasePolyCombine {
|
|
|
5242
5271
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5243
5272
|
* @param [options.name = ''] - 矢量数据名称
|
|
5244
5273
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5274
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5245
5275
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5246
5276
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5247
5277
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5278,6 +5308,7 @@ declare class RectangleCombine extends BasePolyCombine {
|
|
|
5278
5308
|
id?: string | number;
|
|
5279
5309
|
name?: string;
|
|
5280
5310
|
show?: boolean;
|
|
5311
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5281
5312
|
eventParent?: BaseClass | boolean;
|
|
5282
5313
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5283
5314
|
flyTo?: boolean;
|
|
@@ -5315,6 +5346,7 @@ declare class RectangleCombine extends BasePolyCombine {
|
|
|
5315
5346
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5316
5347
|
* @param [options.name = ''] - 矢量数据名称
|
|
5317
5348
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5349
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5318
5350
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5319
5351
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5320
5352
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5351,6 +5383,7 @@ declare class WallCombine extends BasePolyCombine {
|
|
|
5351
5383
|
id?: string | number;
|
|
5352
5384
|
name?: string;
|
|
5353
5385
|
show?: boolean;
|
|
5386
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5354
5387
|
eventParent?: BaseClass | boolean;
|
|
5355
5388
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5356
5389
|
flyTo?: boolean;
|
|
@@ -5386,6 +5419,7 @@ declare class WallCombine extends BasePolyCombine {
|
|
|
5386
5419
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
5387
5420
|
* @param [options.name = ''] - 矢量数据名称
|
|
5388
5421
|
* @param [options.show = true] - 矢量数据是否显示
|
|
5422
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
5389
5423
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
5390
5424
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
5391
5425
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -5419,6 +5453,7 @@ declare class WaterCombine extends PolygonCombine {
|
|
|
5419
5453
|
id?: string | number;
|
|
5420
5454
|
name?: string;
|
|
5421
5455
|
show?: boolean;
|
|
5456
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
5422
5457
|
eventParent?: BaseClass | boolean;
|
|
5423
5458
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5424
5459
|
flyTo?: boolean;
|
|
@@ -5587,6 +5622,16 @@ declare class ConeVisibility extends PointVisibility {
|
|
|
5587
5622
|
* @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
|
|
5588
5623
|
* // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
|
|
5589
5624
|
* // * @param {number} [options.wall.surface] 设置墙底部高度是否贴地
|
|
5625
|
+
* @param [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
|
|
5626
|
+
* @param [highlight.label] - 使用 文本 对象,及其对应的样式
|
|
5627
|
+
* @param [highlight.billboard] - 使用 图标 对象,及其对应的样式
|
|
5628
|
+
* @param [highlight.point] - 使用 图标 对象,及其对应的样式
|
|
5629
|
+
* @param [highlight.model] - 使用 gltf模型 对象,及其对应的样式
|
|
5630
|
+
* @param [highlight.circle] - 使用 圆 对象,及其对应的样式
|
|
5631
|
+
* @param [highlight.coneTrack] - 使用 圆锥体 对象,及其对应的样式
|
|
5632
|
+
* @param [highlight.path] - 使用 path轨迹 对象,及其对应的样式
|
|
5633
|
+
* @param [highlight.polyline] - 使用 polyline路线 对象,及其对应的样式
|
|
5634
|
+
* @param [highlight.wall] - 使用 墙体 对象,及其对应的样式
|
|
5590
5635
|
* @param [options.orientation] - 自定义实体方向, 默认内部根据轨迹自动的
|
|
5591
5636
|
* @param [options.fixedFrameTransform = Cesium.Transforms.eastNorthUpToFixedFrame] - 参考系
|
|
5592
5637
|
* @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
|
|
@@ -5687,6 +5732,16 @@ declare class FixedRoute extends Route {
|
|
|
5687
5732
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
5688
5733
|
flyTo?: boolean;
|
|
5689
5734
|
flyToOptions?: any;
|
|
5735
|
+
}, highlight?: {
|
|
5736
|
+
label?: LabelPrimitive.StyleOptions | any;
|
|
5737
|
+
billboard?: BillboardEntity.StyleOptions | any;
|
|
5738
|
+
point?: PointPrimitive.StyleOptions | any;
|
|
5739
|
+
model?: ModelPrimitive.StyleOptions | any;
|
|
5740
|
+
circle?: CircleEntity.StyleOptions | any;
|
|
5741
|
+
coneTrack?: ConeTrack.StyleOptions | any;
|
|
5742
|
+
path?: PathEntity.StyleOptions | any;
|
|
5743
|
+
polyline?: PolylineEntity.StyleOptions | any;
|
|
5744
|
+
wall?: WallEntity.StyleOptions | any;
|
|
5690
5745
|
});
|
|
5691
5746
|
/**
|
|
5692
5747
|
* 开始时间
|
|
@@ -6093,6 +6148,16 @@ declare namespace Route {
|
|
|
6093
6148
|
* @param [options.wall] - 使用 墙体 对象,及其对应的样式 <br/>
|
|
6094
6149
|
* // * @param {number} [options.wall.maxDistance] 设置保留的轨迹长度值(单位:米),不设置时保留所有的轨迹<br/>
|
|
6095
6150
|
* // * @param {number} [options.wall.surface] 设置墙底部高度是否贴地
|
|
6151
|
+
* @param [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
|
|
6152
|
+
* @param [highlight.label] - 使用 文本 对象,及其对应的样式
|
|
6153
|
+
* @param [highlight.billboard] - 使用 图标 对象,及其对应的样式
|
|
6154
|
+
* @param [highlight.point] - 使用 图标 对象,及其对应的样式
|
|
6155
|
+
* @param [highlight.model] - 使用 gltf模型 对象,及其对应的样式
|
|
6156
|
+
* @param [highlight.circle] - 使用 圆 对象,及其对应的样式
|
|
6157
|
+
* @param [highlight.coneTrack] - 使用 圆锥体 对象,及其对应的样式
|
|
6158
|
+
* @param [highlight.path] - 使用 path轨迹 对象,及其对应的样式
|
|
6159
|
+
* @param [highlight.polyline] - 使用 polyline路线 对象,及其对应的样式
|
|
6160
|
+
* @param [highlight.wall] - 使用 墙体 对象,及其对应的样式
|
|
6096
6161
|
* @param [options.orientation] - 自定义实体方向, 默认内部根据轨迹自动的
|
|
6097
6162
|
* @param [options.fixedFrameTransform = Cesium.Transforms.eastNorthUpToFixedFrame] - 参考系
|
|
6098
6163
|
* @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
|
|
@@ -6180,6 +6245,16 @@ declare class Route extends BasePointPrimitive {
|
|
|
6180
6245
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
6181
6246
|
flyTo?: boolean;
|
|
6182
6247
|
flyToOptions?: any;
|
|
6248
|
+
}, highlight?: {
|
|
6249
|
+
label?: LabelPrimitive.StyleOptions | any;
|
|
6250
|
+
billboard?: BillboardEntity.StyleOptions | any;
|
|
6251
|
+
point?: PointPrimitive.StyleOptions | any;
|
|
6252
|
+
model?: ModelPrimitive.StyleOptions | any;
|
|
6253
|
+
circle?: CircleEntity.StyleOptions | any;
|
|
6254
|
+
coneTrack?: ConeTrack.StyleOptions | any;
|
|
6255
|
+
path?: PathEntity.StyleOptions | any;
|
|
6256
|
+
polyline?: PolylineEntity.StyleOptions | any;
|
|
6257
|
+
wall?: WallEntity.StyleOptions | any;
|
|
6183
6258
|
});
|
|
6184
6259
|
/**
|
|
6185
6260
|
* 时序动态坐标对象
|
|
@@ -6343,7 +6418,7 @@ declare class Route extends BasePointPrimitive {
|
|
|
6343
6418
|
* 更新视角模式,传入空值代表取消。
|
|
6344
6419
|
* @param [cameraOptions] - 参数,包括:
|
|
6345
6420
|
* @param [cameraOptions.type] - 视角模式类型,包括:'':无、'gs':跟随视角、'dy':第一视角、'sd':上帝视角
|
|
6346
|
-
* @param [cameraOptions.radius] - 'gs'跟随视角时的
|
|
6421
|
+
* @param [cameraOptions.radius] - 'gs'跟随视角时的 离目标的距离值(单位:米)
|
|
6347
6422
|
* @param [cameraOptions.heading] - 'gs'跟随视角时的 初始方向角度值,绕垂直于地心的轴旋转角度, 0至360
|
|
6348
6423
|
* @param [cameraOptions.pitch] - 'gs'跟随视角时的 初始俯仰角度值,绕纬度线旋转角度, 0至360 *
|
|
6349
6424
|
* @param [cameraOptions.followedX = 50] - 'dy'锁定第一视角时,距离运动点的距离(后方)
|
|
@@ -6966,7 +7041,7 @@ declare namespace DivBoderLabel {
|
|
|
6966
7041
|
* @param [options.hasEdit = true] - 是否允许编辑
|
|
6967
7042
|
* @param [options.hasEditContextMenu = true] - 编辑时,是否绑定右键编辑菜单
|
|
6968
7043
|
* @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
|
|
6969
|
-
* @param [options.pointerEvents
|
|
7044
|
+
* @param [options.pointerEvents] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
|
|
6970
7045
|
* @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
|
|
6971
7046
|
* @param [options.zIndex = "auto"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
6972
7047
|
* @param [options.depthTest = true] - 是否打开深度判断(true时判断是否在球背面)
|
|
@@ -6979,6 +7054,7 @@ declare namespace DivBoderLabel {
|
|
|
6979
7054
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
6980
7055
|
* @param [options.name = ''] - 矢量数据名称
|
|
6981
7056
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7057
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
6982
7058
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
6983
7059
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
6984
7060
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7004,6 +7080,7 @@ declare class DivBoderLabel extends DivGraphic {
|
|
|
7004
7080
|
id?: string | number;
|
|
7005
7081
|
name?: string;
|
|
7006
7082
|
show?: boolean;
|
|
7083
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7007
7084
|
eventParent?: BaseClass | boolean;
|
|
7008
7085
|
flyTo?: boolean;
|
|
7009
7086
|
flyToOptions?: any;
|
|
@@ -7075,7 +7152,7 @@ declare namespace DivGraphic {
|
|
|
7075
7152
|
* @param [options.hasEdit = true] - 是否允许编辑
|
|
7076
7153
|
* @param [options.hasEditContextMenu = true] - 编辑时,是否绑定右键编辑菜单
|
|
7077
7154
|
* @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
|
|
7078
|
-
* @param [options.pointerEvents
|
|
7155
|
+
* @param [options.pointerEvents] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
|
|
7079
7156
|
* @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
|
|
7080
7157
|
* @param [options.zIndex = "auto"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
7081
7158
|
* @param [options.depthTest = true] - 是否打开深度判断(true时判断是否在球背面)
|
|
@@ -7096,6 +7173,7 @@ declare namespace DivGraphic {
|
|
|
7096
7173
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7097
7174
|
* @param [options.name = ''] - 矢量数据名称
|
|
7098
7175
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7176
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7099
7177
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
7100
7178
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
7101
7179
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7129,6 +7207,7 @@ declare class DivGraphic extends BaseGraphic {
|
|
|
7129
7207
|
id?: string | number;
|
|
7130
7208
|
name?: string;
|
|
7131
7209
|
show?: boolean;
|
|
7210
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7132
7211
|
eventParent?: BaseClass | boolean;
|
|
7133
7212
|
flyTo?: boolean;
|
|
7134
7213
|
flyToOptions?: any;
|
|
@@ -7360,7 +7439,7 @@ declare namespace DivLightPoint {
|
|
|
7360
7439
|
* @param [options.hasEdit = true] - 是否允许编辑
|
|
7361
7440
|
* @param [options.hasEditContextMenu = true] - 编辑时,是否绑定右键编辑菜单
|
|
7362
7441
|
* @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
|
|
7363
|
-
* @param [options.pointerEvents
|
|
7442
|
+
* @param [options.pointerEvents] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
|
|
7364
7443
|
* @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
|
|
7365
7444
|
* @param [options.zIndex = "auto"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
7366
7445
|
* @param [options.depthTest = true] - 是否打开深度判断(true时判断是否在球背面)
|
|
@@ -7373,6 +7452,7 @@ declare namespace DivLightPoint {
|
|
|
7373
7452
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7374
7453
|
* @param [options.name = ''] - 矢量数据名称
|
|
7375
7454
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7455
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7376
7456
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
7377
7457
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
7378
7458
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7398,6 +7478,7 @@ declare class DivLightPoint extends DivGraphic {
|
|
|
7398
7478
|
id?: string | number;
|
|
7399
7479
|
name?: string;
|
|
7400
7480
|
show?: boolean;
|
|
7481
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7401
7482
|
eventParent?: BaseClass | boolean;
|
|
7402
7483
|
flyTo?: boolean;
|
|
7403
7484
|
flyToOptions?: any;
|
|
@@ -7473,7 +7554,7 @@ declare namespace DivUpLabel {
|
|
|
7473
7554
|
* @param [options.hasEdit = true] - 是否允许编辑
|
|
7474
7555
|
* @param [options.hasEditContextMenu = true] - 编辑时,是否绑定右键编辑菜单
|
|
7475
7556
|
* @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
|
|
7476
|
-
* @param [options.pointerEvents
|
|
7557
|
+
* @param [options.pointerEvents] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
|
|
7477
7558
|
* @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
|
|
7478
7559
|
* @param [options.zIndex = "auto"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
7479
7560
|
* @param [options.depthTest = true] - 是否打开深度判断(true时判断是否在球背面)
|
|
@@ -7486,6 +7567,7 @@ declare namespace DivUpLabel {
|
|
|
7486
7567
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7487
7568
|
* @param [options.name = ''] - 矢量数据名称
|
|
7488
7569
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7570
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7489
7571
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
7490
7572
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
7491
7573
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -7511,6 +7593,7 @@ declare class DivUpLabel extends DivGraphic {
|
|
|
7511
7593
|
id?: string | number;
|
|
7512
7594
|
name?: string;
|
|
7513
7595
|
show?: boolean;
|
|
7596
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7514
7597
|
eventParent?: BaseClass | boolean;
|
|
7515
7598
|
flyTo?: boolean;
|
|
7516
7599
|
flyToOptions?: any;
|
|
@@ -7630,7 +7713,7 @@ declare namespace Popup {
|
|
|
7630
7713
|
* @param [options.autoClose = true] - 在打开弹窗时,是否自动关闭之前的弹窗
|
|
7631
7714
|
* @param [options.animation = true] - 是否执行打开时的动画效果
|
|
7632
7715
|
* @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
|
|
7633
|
-
* @param [options.pointerEvents
|
|
7716
|
+
* @param [options.pointerEvents] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
|
|
7634
7717
|
* @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
|
|
7635
7718
|
* @param [options.zIndex = "10000000"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
7636
7719
|
* @param [options.depthTest = false] - 是否打开深度判断(true时判断是否在球背面)
|
|
@@ -7638,6 +7721,7 @@ declare namespace Popup {
|
|
|
7638
7721
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7639
7722
|
* @param [options.name = ''] - 矢量数据名称
|
|
7640
7723
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7724
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7641
7725
|
*/
|
|
7642
7726
|
declare class Popup extends DivGraphic {
|
|
7643
7727
|
constructor(options: {
|
|
@@ -7656,6 +7740,7 @@ declare class Popup extends DivGraphic {
|
|
|
7656
7740
|
id?: string | number;
|
|
7657
7741
|
name?: string;
|
|
7658
7742
|
show?: boolean;
|
|
7743
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7659
7744
|
});
|
|
7660
7745
|
/**
|
|
7661
7746
|
* 关联的触发对象
|
|
@@ -7734,7 +7819,7 @@ declare namespace Tooltip {
|
|
|
7734
7819
|
* @param options.style - 样式信息
|
|
7735
7820
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
7736
7821
|
* @param [options.testPoint] - 测试点 的对应样式 ,可以进行用于比较测试div的位置,方便调试CSS。
|
|
7737
|
-
* @param [options.pointerEvents
|
|
7822
|
+
* @param [options.pointerEvents] - DIV是否可以鼠标交互,为false时可以穿透操作及缩放地图,但无法进行鼠标交互及触发相关事件。
|
|
7738
7823
|
* @param [options.hasZIndex = false] - 是否自动调整DIV的层级顺序。
|
|
7739
7824
|
* @param [options.zIndex = "10000000"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
7740
7825
|
* @param [options.depthTest = false] - 是否打开深度判断(true时判断是否在球背面)
|
|
@@ -7742,6 +7827,7 @@ declare namespace Tooltip {
|
|
|
7742
7827
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
7743
7828
|
* @param [options.name = ''] - 矢量数据名称
|
|
7744
7829
|
* @param [options.show = true] - 矢量数据是否显示
|
|
7830
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7745
7831
|
*/
|
|
7746
7832
|
declare class Tooltip extends Popup {
|
|
7747
7833
|
constructor(options: {
|
|
@@ -7757,6 +7843,7 @@ declare class Tooltip extends Popup {
|
|
|
7757
7843
|
id?: string | number;
|
|
7758
7844
|
name?: string;
|
|
7759
7845
|
show?: boolean;
|
|
7846
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7760
7847
|
});
|
|
7761
7848
|
}
|
|
7762
7849
|
|
|
@@ -7767,7 +7854,7 @@ declare class Tooltip extends Popup {
|
|
|
7767
7854
|
* @param options.positions - 【线面状(多点)】矢量数据时的坐标位置,具体看子类实现
|
|
7768
7855
|
* @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
|
|
7769
7856
|
* @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性
|
|
7770
|
-
* @param [options.availability] -
|
|
7857
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7771
7858
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
7772
7859
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
7773
7860
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -7791,7 +7878,7 @@ declare class BaseEntity extends BaseGraphic {
|
|
|
7791
7878
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
|
|
7792
7879
|
style: any;
|
|
7793
7880
|
attr?: any;
|
|
7794
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
7881
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7795
7882
|
description?: Cesium.Property | string;
|
|
7796
7883
|
viewFrom?: Cesium.Property;
|
|
7797
7884
|
parent?: Cesium.Entity;
|
|
@@ -7829,14 +7916,6 @@ declare class BaseEntity extends BaseGraphic {
|
|
|
7829
7916
|
* 是否正在编辑状态
|
|
7830
7917
|
*/
|
|
7831
7918
|
readonly isEditing: boolean;
|
|
7832
|
-
/**
|
|
7833
|
-
* 与该对象关联的可用性,可以控制在某些时间段内展示对象
|
|
7834
|
-
* @example
|
|
7835
|
-
* const startTime = Cesium.JulianDate.addSeconds(map.clock.currentTime, 5, new Cesium.JulianDate())
|
|
7836
|
-
* const stopTime = Cesium.JulianDate.addSeconds(map.clock.currentTime, 15, new Cesium.JulianDate())
|
|
7837
|
-
* graphic.availability = new Cesium.TimeIntervalCollection([new Cesium.TimeInterval({ start: startTime, stop: stopTime })])
|
|
7838
|
-
*/
|
|
7839
|
-
availability: Cesium.TimeIntervalCollection;
|
|
7840
7919
|
/**
|
|
7841
7920
|
* 重新渲染对象
|
|
7842
7921
|
* @returns 无
|
|
@@ -7929,7 +8008,7 @@ declare class BaseEntity extends BaseGraphic {
|
|
|
7929
8008
|
* @param [options.orientation] - 指定实体方向的属性。
|
|
7930
8009
|
* @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
|
|
7931
8010
|
* @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
|
|
7932
|
-
* @param [options.availability] -
|
|
8011
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
7933
8012
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
7934
8013
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
7935
8014
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -7965,7 +8044,7 @@ declare class BasePointEntity extends BaseEntity {
|
|
|
7965
8044
|
orientation?: Cesium.Property;
|
|
7966
8045
|
style: any;
|
|
7967
8046
|
attr?: any;
|
|
7968
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8047
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
7969
8048
|
description?: Cesium.Property | string;
|
|
7970
8049
|
viewFrom?: Cesium.Property;
|
|
7971
8050
|
parent?: Cesium.Entity;
|
|
@@ -8111,7 +8190,7 @@ declare class BasePointEntity extends BaseEntity {
|
|
|
8111
8190
|
* @param options.positions - 坐标位置
|
|
8112
8191
|
* @param options.style - 矢量数据的 样式信息,具体见各类数据的说明
|
|
8113
8192
|
* @param [options.attr] - 矢量数据的 属性信息,可以任意附加属性。
|
|
8114
|
-
* @param [options.availability] -
|
|
8193
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8115
8194
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8116
8195
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8117
8196
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8142,7 +8221,7 @@ declare class BasePolyEntity extends BaseEntity {
|
|
|
8142
8221
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
8143
8222
|
style: any;
|
|
8144
8223
|
attr?: any;
|
|
8145
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8224
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8146
8225
|
description?: Cesium.Property | string;
|
|
8147
8226
|
viewFrom?: Cesium.Property;
|
|
8148
8227
|
parent?: Cesium.Entity;
|
|
@@ -8340,7 +8419,7 @@ declare namespace BillboardEntity {
|
|
|
8340
8419
|
* @param options.position - 坐标位置
|
|
8341
8420
|
* @param options.style - 样式信息
|
|
8342
8421
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8343
|
-
* @param [options.availability] -
|
|
8422
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8344
8423
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8345
8424
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8346
8425
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8376,7 +8455,7 @@ declare class BillboardEntity extends BasePointEntity {
|
|
|
8376
8455
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
8377
8456
|
style: BillboardEntity.StyleOptions | any;
|
|
8378
8457
|
attr?: any;
|
|
8379
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8458
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8380
8459
|
description?: Cesium.Property | string;
|
|
8381
8460
|
viewFrom?: Cesium.Property;
|
|
8382
8461
|
parent?: Cesium.Entity;
|
|
@@ -8439,6 +8518,38 @@ declare class BillboardEntity extends BasePointEntity {
|
|
|
8439
8518
|
* @returns 无
|
|
8440
8519
|
*/
|
|
8441
8520
|
stopBounce(): void;
|
|
8521
|
+
/**
|
|
8522
|
+
* 指定时间范围内显示该对象 [提示:仅部分子类实现,非所有对象都支持]
|
|
8523
|
+
* @example
|
|
8524
|
+
* // cesium原生写法,单个
|
|
8525
|
+
* graphic.availability = new Cesium.TimeInterval({
|
|
8526
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
8527
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
8528
|
+
* isStartIncluded: true,
|
|
8529
|
+
* isStopIncluded: false
|
|
8530
|
+
* })
|
|
8531
|
+
*
|
|
8532
|
+
* // cesium原生写法, 多个
|
|
8533
|
+
* graphic.availability = new Cesium.TimeIntervalCollection([
|
|
8534
|
+
* new Cesium.TimeInterval({
|
|
8535
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
8536
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
8537
|
+
* isStartIncluded: true,
|
|
8538
|
+
* isStopIncluded: false
|
|
8539
|
+
* }),
|
|
8540
|
+
*
|
|
8541
|
+
* ])
|
|
8542
|
+
*
|
|
8543
|
+
* // 普通传值方式,多个
|
|
8544
|
+
* graphic.availability = [
|
|
8545
|
+
* { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
|
|
8546
|
+
* { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
|
|
8547
|
+
* ]
|
|
8548
|
+
*
|
|
8549
|
+
* // 普通传值方式,单个
|
|
8550
|
+
* graphic.availability = { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false }
|
|
8551
|
+
*/
|
|
8552
|
+
availability: Cesium.TimeIntervalCollection;
|
|
8442
8553
|
}
|
|
8443
8554
|
|
|
8444
8555
|
declare namespace BoxEntity {
|
|
@@ -8514,7 +8625,7 @@ declare namespace BoxEntity {
|
|
|
8514
8625
|
* @param options.style - 样式信息
|
|
8515
8626
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8516
8627
|
* @param [options.orientation] - 实体方向
|
|
8517
|
-
* @param [options.availability] -
|
|
8628
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8518
8629
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8519
8630
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8520
8631
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8541,7 +8652,7 @@ declare class BoxEntity {
|
|
|
8541
8652
|
style: BoxEntity.StyleOptions | any;
|
|
8542
8653
|
attr?: any;
|
|
8543
8654
|
orientation?: Cesium.Property;
|
|
8544
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8655
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8545
8656
|
description?: Cesium.Property | string;
|
|
8546
8657
|
viewFrom?: Cesium.Property;
|
|
8547
8658
|
parent?: Cesium.Entity;
|
|
@@ -8668,7 +8779,7 @@ declare namespace CanvasLabelEntity {
|
|
|
8668
8779
|
* @param options.position - 坐标位置
|
|
8669
8780
|
* @param options.style - 样式信息
|
|
8670
8781
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8671
|
-
* @param [options.availability] -
|
|
8782
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8672
8783
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8673
8784
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8674
8785
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8694,7 +8805,7 @@ declare class CanvasLabelEntity {
|
|
|
8694
8805
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
8695
8806
|
style: CanvasLabelEntity.StyleOptions | any;
|
|
8696
8807
|
attr?: any;
|
|
8697
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8808
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8698
8809
|
description?: Cesium.Property | string;
|
|
8699
8810
|
viewFrom?: Cesium.Property;
|
|
8700
8811
|
parent?: Cesium.Entity;
|
|
@@ -8730,7 +8841,7 @@ declare namespace CircleEntity {
|
|
|
8730
8841
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
8731
8842
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
8732
8843
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`material材质参数`将被覆盖。
|
|
8733
|
-
* @property [color = "#
|
|
8844
|
+
* @property [color = "#ffffff"] - 填充颜色
|
|
8734
8845
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
8735
8846
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
8736
8847
|
* @property [outline = false] - 是否边框
|
|
@@ -8801,7 +8912,7 @@ declare namespace CircleEntity {
|
|
|
8801
8912
|
* @param options.position - 坐标位置
|
|
8802
8913
|
* @param options.style - 样式信息
|
|
8803
8914
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
8804
|
-
* @param [options.availability] -
|
|
8915
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
8805
8916
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
8806
8917
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
8807
8918
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -8830,7 +8941,7 @@ declare class CircleEntity extends BasePointEntity {
|
|
|
8830
8941
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
8831
8942
|
style: CircleEntity.StyleOptions | any;
|
|
8832
8943
|
attr?: any;
|
|
8833
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
8944
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
8834
8945
|
description?: Cesium.Property | string;
|
|
8835
8946
|
viewFrom?: Cesium.Property;
|
|
8836
8947
|
parent?: Cesium.Entity;
|
|
@@ -9041,7 +9152,7 @@ declare namespace ConeTrack {
|
|
|
9041
9152
|
* @param [options.targetPosition] - 追踪的目标位置
|
|
9042
9153
|
* @param options.style - 样式信息
|
|
9043
9154
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9044
|
-
* @param [options.availability] -
|
|
9155
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9045
9156
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9046
9157
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9047
9158
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9065,7 +9176,7 @@ declare class ConeTrack extends CylinderEntity {
|
|
|
9065
9176
|
targetPosition?: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
9066
9177
|
style: ConeTrack.StyleOptions | any;
|
|
9067
9178
|
attr?: any;
|
|
9068
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9179
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9069
9180
|
description?: Cesium.Property | string;
|
|
9070
9181
|
viewFrom?: Cesium.Property;
|
|
9071
9182
|
parent?: Cesium.Entity;
|
|
@@ -9142,7 +9253,7 @@ declare namespace CorridorEntity {
|
|
|
9142
9253
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
9143
9254
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
9144
9255
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
9145
|
-
* @property [color = "#
|
|
9256
|
+
* @property [color = "#ffffff"] - 颜色
|
|
9146
9257
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
9147
9258
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
9148
9259
|
* @property [outline = false] - 是否边框
|
|
@@ -9204,7 +9315,7 @@ declare namespace CorridorEntity {
|
|
|
9204
9315
|
* @param options.positions - 坐标位置
|
|
9205
9316
|
* @param options.style - 样式信息
|
|
9206
9317
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9207
|
-
* @param [options.availability] -
|
|
9318
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9208
9319
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9209
9320
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9210
9321
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9234,7 +9345,7 @@ declare class CorridorEntity extends BasePolyEntity {
|
|
|
9234
9345
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
9235
9346
|
style: CorridorEntity.StyleOptions | any;
|
|
9236
9347
|
attr?: any;
|
|
9237
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9348
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9238
9349
|
description?: Cesium.Property | string;
|
|
9239
9350
|
viewFrom?: Cesium.Property;
|
|
9240
9351
|
parent?: Cesium.Entity;
|
|
@@ -9277,7 +9388,7 @@ declare class CorridorEntity extends BasePolyEntity {
|
|
|
9277
9388
|
* // * @param {number} [options.style.sharpness=0.85] 曲线的弯曲程度
|
|
9278
9389
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9279
9390
|
* @param [options.getShowPositions] - 自定义计算曲线点回调方法,可以在方法内自定义计算算法。
|
|
9280
|
-
* @param [options.availability] -
|
|
9391
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9281
9392
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9282
9393
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9283
9394
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9308,7 +9419,7 @@ declare class CurveEntity extends PolylineEntity {
|
|
|
9308
9419
|
style: PolylineEntity.StyleOptions | any;
|
|
9309
9420
|
attr?: any;
|
|
9310
9421
|
getShowPositions?: (...params: any[]) => any;
|
|
9311
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9422
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9312
9423
|
description?: Cesium.Property | string;
|
|
9313
9424
|
viewFrom?: Cesium.Property;
|
|
9314
9425
|
parent?: Cesium.Entity;
|
|
@@ -9406,7 +9517,7 @@ declare namespace CylinderEntity {
|
|
|
9406
9517
|
* @param options.style - 样式信息
|
|
9407
9518
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9408
9519
|
* @param [options.orientation] - 实体方向
|
|
9409
|
-
* @param [options.availability] -
|
|
9520
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9410
9521
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9411
9522
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9412
9523
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9432,7 +9543,7 @@ declare class CylinderEntity extends BasePointEntity {
|
|
|
9432
9543
|
style: CylinderEntity.StyleOptions | any;
|
|
9433
9544
|
attr?: any;
|
|
9434
9545
|
orientation?: Cesium.Property;
|
|
9435
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9546
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9436
9547
|
description?: Cesium.Property | string;
|
|
9437
9548
|
viewFrom?: Cesium.Property;
|
|
9438
9549
|
parent?: Cesium.Entity;
|
|
@@ -9553,7 +9664,7 @@ declare namespace DivBillboardEntity {
|
|
|
9553
9664
|
* @param options.position - 坐标位置
|
|
9554
9665
|
* @param options.style - 样式信息
|
|
9555
9666
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9556
|
-
* @param [options.availability] -
|
|
9667
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9557
9668
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9558
9669
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9559
9670
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9579,7 +9690,7 @@ declare class DivBillboardEntity extends BillboardEntity {
|
|
|
9579
9690
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
9580
9691
|
style: DivBillboardEntity.StyleOptions | any;
|
|
9581
9692
|
attr?: any;
|
|
9582
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9693
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9583
9694
|
description?: Cesium.Property | string;
|
|
9584
9695
|
viewFrom?: Cesium.Property;
|
|
9585
9696
|
parent?: Cesium.Entity;
|
|
@@ -9768,7 +9879,7 @@ declare namespace EllipseEntity {
|
|
|
9768
9879
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
9769
9880
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
9770
9881
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
9771
|
-
* @property [color = "#
|
|
9882
|
+
* @property [color = "#ffffff"] - 填充颜色
|
|
9772
9883
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
9773
9884
|
* @property [outline = false] - 是否边框
|
|
9774
9885
|
* @property [outlineWidth = 1] - 边框宽度
|
|
@@ -9838,7 +9949,7 @@ declare namespace EllipseEntity {
|
|
|
9838
9949
|
* @param options.position - 坐标位置
|
|
9839
9950
|
* @param options.style - 样式信息
|
|
9840
9951
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
9841
|
-
* @param [options.availability] -
|
|
9952
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
9842
9953
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
9843
9954
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
9844
9955
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -9864,7 +9975,7 @@ declare class EllipseEntity extends CircleEntity {
|
|
|
9864
9975
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
9865
9976
|
style: EllipseEntity.StyleOptions | any;
|
|
9866
9977
|
attr?: any;
|
|
9867
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
9978
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
9868
9979
|
description?: Cesium.Property | string;
|
|
9869
9980
|
viewFrom?: Cesium.Property;
|
|
9870
9981
|
parent?: Cesium.Entity;
|
|
@@ -10005,7 +10116,7 @@ declare namespace EllipsoidEntity {
|
|
|
10005
10116
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10006
10117
|
* @param [options.orientation] - 实体方向
|
|
10007
10118
|
* @param [options.scanPlane] - 动态扫描面
|
|
10008
|
-
* @param [options.availability] -
|
|
10119
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10009
10120
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10010
10121
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10011
10122
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10035,7 +10146,7 @@ declare class EllipsoidEntity extends BasePointEntity {
|
|
|
10035
10146
|
attr?: any;
|
|
10036
10147
|
orientation?: Cesium.Property;
|
|
10037
10148
|
scanPlane?: EllipsoidEntity.ScanPlaneOptions | EllipsoidEntity.ScanPlaneOptions[];
|
|
10038
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10149
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10039
10150
|
description?: Cesium.Property | string;
|
|
10040
10151
|
viewFrom?: Cesium.Property;
|
|
10041
10152
|
parent?: Cesium.Entity;
|
|
@@ -10180,7 +10291,7 @@ declare namespace FontBillboardEntity {
|
|
|
10180
10291
|
* @param options.position - 坐标位置
|
|
10181
10292
|
* @param options.style - 样式信息
|
|
10182
10293
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10183
|
-
* @param [options.availability] -
|
|
10294
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10184
10295
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10185
10296
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10186
10297
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10206,7 +10317,7 @@ declare class FontBillboardEntity extends BasePointEntity {
|
|
|
10206
10317
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
10207
10318
|
style: FontBillboardEntity.StyleOptions | any;
|
|
10208
10319
|
attr?: any;
|
|
10209
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10320
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10210
10321
|
description?: Cesium.Property | string;
|
|
10211
10322
|
viewFrom?: Cesium.Property;
|
|
10212
10323
|
parent?: Cesium.Entity;
|
|
@@ -10327,7 +10438,7 @@ declare namespace LabelEntity {
|
|
|
10327
10438
|
* @param options.position - 坐标位置
|
|
10328
10439
|
* @param options.style - 样式信息
|
|
10329
10440
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10330
|
-
* @param [options.availability] -
|
|
10441
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10331
10442
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10332
10443
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10333
10444
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10353,7 +10464,7 @@ declare class LabelEntity {
|
|
|
10353
10464
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
10354
10465
|
style: LabelEntity.StyleOptions | any;
|
|
10355
10466
|
attr?: any;
|
|
10356
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10467
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10357
10468
|
description?: Cesium.Property | string;
|
|
10358
10469
|
viewFrom?: Cesium.Property;
|
|
10359
10470
|
parent?: Cesium.Entity;
|
|
@@ -10421,7 +10532,7 @@ declare namespace ModelEntity {
|
|
|
10421
10532
|
* @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
|
|
10422
10533
|
* @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
|
|
10423
10534
|
* @property [fill = false] - 是否填充,指定与模型渲染颜色混合
|
|
10424
|
-
* @property [color = "#
|
|
10535
|
+
* @property [color = "#ffffff"] - 颜色
|
|
10425
10536
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
10426
10537
|
* @property [colorBlendMode = ColorBlendMode.HIGHLIGHT] - 指定颜色如何与模型混合。
|
|
10427
10538
|
* @property [colorBlendAmount = 0.5] - 当colorBlendMode为MIX时指定颜色强度的数字属性。0.0的值表示模型渲染的颜色,1.0的值表示纯色,任何介于两者之间的值表示两者的混合。
|
|
@@ -10505,7 +10616,7 @@ declare namespace ModelEntity {
|
|
|
10505
10616
|
* @param options.style - 样式信息
|
|
10506
10617
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10507
10618
|
* @param [options.orientation] - 实体方向
|
|
10508
|
-
* @param [options.availability] -
|
|
10619
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10509
10620
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10510
10621
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10511
10622
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10548,7 +10659,7 @@ declare class ModelEntity extends BasePointEntity {
|
|
|
10548
10659
|
style: ModelEntity.StyleOptions | any;
|
|
10549
10660
|
attr?: any;
|
|
10550
10661
|
orientation?: Cesium.Property;
|
|
10551
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10662
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10552
10663
|
description?: Cesium.Property | string;
|
|
10553
10664
|
viewFrom?: Cesium.Property;
|
|
10554
10665
|
parent?: Cesium.Entity;
|
|
@@ -10702,6 +10813,38 @@ declare class ModelEntity extends BasePointEntity {
|
|
|
10702
10813
|
* 四周方向角,0-360度角度值
|
|
10703
10814
|
*/
|
|
10704
10815
|
heading: number;
|
|
10816
|
+
/**
|
|
10817
|
+
* 指定时间范围内显示该对象 [提示:仅部分子类实现,非所有对象都支持]
|
|
10818
|
+
* @example
|
|
10819
|
+
* // cesium原生写法,单个
|
|
10820
|
+
* graphic.availability = new Cesium.TimeInterval({
|
|
10821
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
10822
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
10823
|
+
* isStartIncluded: true,
|
|
10824
|
+
* isStopIncluded: false
|
|
10825
|
+
* })
|
|
10826
|
+
*
|
|
10827
|
+
* // cesium原生写法, 多个
|
|
10828
|
+
* graphic.availability = new Cesium.TimeIntervalCollection([
|
|
10829
|
+
* new Cesium.TimeInterval({
|
|
10830
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
10831
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
10832
|
+
* isStartIncluded: true,
|
|
10833
|
+
* isStopIncluded: false
|
|
10834
|
+
* }),
|
|
10835
|
+
*
|
|
10836
|
+
* ])
|
|
10837
|
+
*
|
|
10838
|
+
* // 普通传值方式,多个
|
|
10839
|
+
* graphic.availability = [
|
|
10840
|
+
* { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
|
|
10841
|
+
* { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
|
|
10842
|
+
* ]
|
|
10843
|
+
*
|
|
10844
|
+
* // 普通传值方式,单个
|
|
10845
|
+
* graphic.availability = { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false }
|
|
10846
|
+
*/
|
|
10847
|
+
availability: Cesium.TimeIntervalCollection;
|
|
10705
10848
|
}
|
|
10706
10849
|
|
|
10707
10850
|
declare namespace PathEntity {
|
|
@@ -10739,7 +10882,7 @@ declare namespace PathEntity {
|
|
|
10739
10882
|
* @param [options.orientation] - 实体方向
|
|
10740
10883
|
* @param options.style - 样式信息
|
|
10741
10884
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10742
|
-
* @param [options.availability] -
|
|
10885
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10743
10886
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10744
10887
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10745
10888
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10772,7 +10915,7 @@ declare class PathEntity extends BasePointEntity {
|
|
|
10772
10915
|
orientation?: Cesium.Property;
|
|
10773
10916
|
style: PathEntity.StyleOptions | any;
|
|
10774
10917
|
attr?: any;
|
|
10775
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
10918
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10776
10919
|
description?: Cesium.Property | string;
|
|
10777
10920
|
viewFrom?: Cesium.Property;
|
|
10778
10921
|
parent?: Cesium.Entity;
|
|
@@ -10880,6 +11023,38 @@ declare class PathEntity extends BasePointEntity {
|
|
|
10880
11023
|
* 位置坐标 (笛卡尔坐标), 赋值时可以传入LatLngPoint对象
|
|
10881
11024
|
*/
|
|
10882
11025
|
position: Cesium.Cartesian3 | LngLatPoint;
|
|
11026
|
+
/**
|
|
11027
|
+
* 指定时间范围内显示该对象 [提示:仅部分子类实现,非所有对象都支持]
|
|
11028
|
+
* @example
|
|
11029
|
+
* // cesium原生写法,单个
|
|
11030
|
+
* graphic.availability = new Cesium.TimeInterval({
|
|
11031
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
11032
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
11033
|
+
* isStartIncluded: true,
|
|
11034
|
+
* isStopIncluded: false
|
|
11035
|
+
* })
|
|
11036
|
+
*
|
|
11037
|
+
* // cesium原生写法, 多个
|
|
11038
|
+
* graphic.availability = new Cesium.TimeIntervalCollection([
|
|
11039
|
+
* new Cesium.TimeInterval({
|
|
11040
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
11041
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
11042
|
+
* isStartIncluded: true,
|
|
11043
|
+
* isStopIncluded: false
|
|
11044
|
+
* }),
|
|
11045
|
+
*
|
|
11046
|
+
* ])
|
|
11047
|
+
*
|
|
11048
|
+
* // 普通传值方式,多个
|
|
11049
|
+
* graphic.availability = [
|
|
11050
|
+
* { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
|
|
11051
|
+
* { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
|
|
11052
|
+
* ]
|
|
11053
|
+
*
|
|
11054
|
+
* // 普通传值方式,单个
|
|
11055
|
+
* graphic.availability = { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false }
|
|
11056
|
+
*/
|
|
11057
|
+
availability: Cesium.TimeIntervalCollection;
|
|
10883
11058
|
}
|
|
10884
11059
|
|
|
10885
11060
|
declare namespace PitEntity {
|
|
@@ -10907,7 +11082,7 @@ declare namespace PitEntity {
|
|
|
10907
11082
|
* @param options.positions - 坐标位置
|
|
10908
11083
|
* @param options.style - 样式信息
|
|
10909
11084
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
10910
|
-
* @param [options.availability] -
|
|
11085
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
10911
11086
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
10912
11087
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
10913
11088
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -10930,7 +11105,7 @@ declare class PitEntity extends BasePolyEntity {
|
|
|
10930
11105
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | any[];
|
|
10931
11106
|
style: PitEntity.StyleOptions | any;
|
|
10932
11107
|
attr?: any;
|
|
10933
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11108
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
10934
11109
|
description?: Cesium.Property | string;
|
|
10935
11110
|
viewFrom?: Cesium.Property;
|
|
10936
11111
|
parent?: Cesium.Entity;
|
|
@@ -11029,7 +11204,7 @@ declare namespace PlaneEntity {
|
|
|
11029
11204
|
* @param options.style - 样式信息
|
|
11030
11205
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11031
11206
|
* @param [options.orientation] - 实体方向
|
|
11032
|
-
* @param [options.availability] -
|
|
11207
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11033
11208
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11034
11209
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11035
11210
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11056,7 +11231,7 @@ declare class PlaneEntity {
|
|
|
11056
11231
|
style: PlaneEntity.StyleOptions | any;
|
|
11057
11232
|
attr?: any;
|
|
11058
11233
|
orientation?: Cesium.Property;
|
|
11059
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11234
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11060
11235
|
description?: Cesium.Property | string;
|
|
11061
11236
|
viewFrom?: Cesium.Property;
|
|
11062
11237
|
parent?: Cesium.Entity;
|
|
@@ -11091,7 +11266,7 @@ declare namespace PointEntity {
|
|
|
11091
11266
|
/**
|
|
11092
11267
|
* 像素点 支持的样式信息
|
|
11093
11268
|
* @property [pixelSize = 10] - 像素大小
|
|
11094
|
-
* @property [color = "#
|
|
11269
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11095
11270
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
11096
11271
|
* @property [outline = false] - 是否边框
|
|
11097
11272
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
@@ -11149,7 +11324,7 @@ declare namespace PointEntity {
|
|
|
11149
11324
|
* @param options.position - 坐标位置
|
|
11150
11325
|
* @param options.style - 样式信息
|
|
11151
11326
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11152
|
-
* @param [options.availability] -
|
|
11327
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11153
11328
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11154
11329
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11155
11330
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11185,7 +11360,7 @@ declare class PointEntity extends BasePointEntity {
|
|
|
11185
11360
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
11186
11361
|
style: PointEntity.StyleOptions | any;
|
|
11187
11362
|
attr?: any;
|
|
11188
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11363
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11189
11364
|
description?: Cesium.Property | string;
|
|
11190
11365
|
viewFrom?: Cesium.Property;
|
|
11191
11366
|
parent?: Cesium.Entity;
|
|
@@ -11220,6 +11395,38 @@ declare class PointEntity extends BasePointEntity {
|
|
|
11220
11395
|
* 矢量数据对应的 Cesium内部对象的具体类型对象
|
|
11221
11396
|
*/
|
|
11222
11397
|
readonly entityGraphic: Cesium.PointGraphics;
|
|
11398
|
+
/**
|
|
11399
|
+
* 指定时间范围内显示该对象 [提示:仅部分子类实现,非所有对象都支持]
|
|
11400
|
+
* @example
|
|
11401
|
+
* // cesium原生写法,单个
|
|
11402
|
+
* graphic.availability = new Cesium.TimeInterval({
|
|
11403
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
11404
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
11405
|
+
* isStartIncluded: true,
|
|
11406
|
+
* isStopIncluded: false
|
|
11407
|
+
* })
|
|
11408
|
+
*
|
|
11409
|
+
* // cesium原生写法, 多个
|
|
11410
|
+
* graphic.availability = new Cesium.TimeIntervalCollection([
|
|
11411
|
+
* new Cesium.TimeInterval({
|
|
11412
|
+
* start: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:00")),
|
|
11413
|
+
* stop: Cesium.JulianDate.fromDate(new Date("2017-08-25 08:00:20")),
|
|
11414
|
+
* isStartIncluded: true,
|
|
11415
|
+
* isStopIncluded: false
|
|
11416
|
+
* }),
|
|
11417
|
+
*
|
|
11418
|
+
* ])
|
|
11419
|
+
*
|
|
11420
|
+
* // 普通传值方式,多个
|
|
11421
|
+
* graphic.availability = [
|
|
11422
|
+
* { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
|
|
11423
|
+
* { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
|
|
11424
|
+
* ]
|
|
11425
|
+
*
|
|
11426
|
+
* // 普通传值方式,单个
|
|
11427
|
+
* graphic.availability = { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false }
|
|
11428
|
+
*/
|
|
11429
|
+
availability: Cesium.TimeIntervalCollection;
|
|
11223
11430
|
}
|
|
11224
11431
|
|
|
11225
11432
|
declare namespace PolygonEntity {
|
|
@@ -11229,7 +11436,7 @@ declare namespace PolygonEntity {
|
|
|
11229
11436
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
11230
11437
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
11231
11438
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
11232
|
-
* @property [color = "#
|
|
11439
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11233
11440
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
11234
11441
|
* @property [randomColor = false] - 是否随机颜色
|
|
11235
11442
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
@@ -11317,7 +11524,7 @@ declare namespace PolygonEntity {
|
|
|
11317
11524
|
* @param options.positions - 坐标位置
|
|
11318
11525
|
* @param options.style - 样式信息
|
|
11319
11526
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11320
|
-
* @param [options.availability] -
|
|
11527
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11321
11528
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11322
11529
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11323
11530
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11348,7 +11555,7 @@ declare class PolygonEntity extends BasePolyEntity {
|
|
|
11348
11555
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
11349
11556
|
style: PolygonEntity.StyleOptions | any;
|
|
11350
11557
|
attr?: any;
|
|
11351
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11558
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11352
11559
|
description?: Cesium.Property | string;
|
|
11353
11560
|
viewFrom?: Cesium.Property;
|
|
11354
11561
|
parent?: Cesium.Entity;
|
|
@@ -11446,7 +11653,7 @@ declare namespace PolylineEntity {
|
|
|
11446
11653
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
11447
11654
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
11448
11655
|
* @property [width = 4] - 线宽
|
|
11449
|
-
* @property [color = "#
|
|
11656
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11450
11657
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
11451
11658
|
* @property [randomColor = false] - 是否随机颜色
|
|
11452
11659
|
* @property [depthFailMaterial] - 指定当折线位于地形之下时用于绘制折线的材质。
|
|
@@ -11514,7 +11721,7 @@ declare namespace PolylineEntity {
|
|
|
11514
11721
|
* @param options.positions - 坐标位置
|
|
11515
11722
|
* @param options.style - 样式信息
|
|
11516
11723
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11517
|
-
* @param [options.availability] -
|
|
11724
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11518
11725
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11519
11726
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11520
11727
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11545,7 +11752,7 @@ declare class PolylineEntity extends BasePolyEntity {
|
|
|
11545
11752
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | any[] | Cesium.PositionProperty | any;
|
|
11546
11753
|
style: PolylineEntity.StyleOptions | any;
|
|
11547
11754
|
attr?: any;
|
|
11548
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11755
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11549
11756
|
description?: Cesium.Property | string;
|
|
11550
11757
|
viewFrom?: Cesium.Property;
|
|
11551
11758
|
parent?: Cesium.Entity;
|
|
@@ -11649,7 +11856,7 @@ declare namespace PolylineVolumeEntity {
|
|
|
11649
11856
|
* @param options.positions - 坐标位置
|
|
11650
11857
|
* @param options.style - 样式信息
|
|
11651
11858
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11652
|
-
* @param [options.availability] -
|
|
11859
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11653
11860
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11654
11861
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11655
11862
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11679,7 +11886,7 @@ declare class PolylineVolumeEntity extends BasePolyEntity {
|
|
|
11679
11886
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
11680
11887
|
style: PolylineVolumeEntity.StyleOptions | any;
|
|
11681
11888
|
attr?: any;
|
|
11682
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
11889
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11683
11890
|
description?: Cesium.Property | string;
|
|
11684
11891
|
viewFrom?: Cesium.Property;
|
|
11685
11892
|
parent?: Cesium.Entity;
|
|
@@ -11721,7 +11928,7 @@ declare namespace RectangleEntity {
|
|
|
11721
11928
|
* @property [materialType = "Color"] - 填充类型 ,可选项:{@link MaterialType}
|
|
11722
11929
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
11723
11930
|
* @property [material = Cesium.Color.WHITE] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
11724
|
-
* @property [color = "#
|
|
11931
|
+
* @property [color = "#ffffff"] - 颜色
|
|
11725
11932
|
* @property [opacity = 1.0] - 透明度, 取值范围:0.0-1.0
|
|
11726
11933
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
11727
11934
|
* @property [outline = false] - 是否边框
|
|
@@ -11797,7 +12004,7 @@ declare namespace RectangleEntity {
|
|
|
11797
12004
|
* @param [options.rectangle] - 矩形范围,与positions二选一。
|
|
11798
12005
|
* @param options.style - 样式信息
|
|
11799
12006
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11800
|
-
* @param [options.availability] -
|
|
12007
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
11801
12008
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
11802
12009
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
11803
12010
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -11828,7 +12035,7 @@ declare class RectangleEntity extends BasePolyEntity {
|
|
|
11828
12035
|
rectangle?: Cesium.Rectangle | Cesium.PositionProperty | Cesium.CallbackProperty;
|
|
11829
12036
|
style: RectangleEntity.StyleOptions | any;
|
|
11830
12037
|
attr?: any;
|
|
11831
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12038
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
11832
12039
|
description?: Cesium.Property | string;
|
|
11833
12040
|
viewFrom?: Cesium.Property;
|
|
11834
12041
|
parent?: Cesium.Entity;
|
|
@@ -12048,7 +12255,7 @@ declare namespace RectangularSensor {
|
|
|
12048
12255
|
* @param options.style - 样式信息
|
|
12049
12256
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12050
12257
|
* @param [options.orientation] - 实体方向
|
|
12051
|
-
* @param [options.availability] -
|
|
12258
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12052
12259
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12053
12260
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12054
12261
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12075,7 +12282,7 @@ declare class RectangularSensor {
|
|
|
12075
12282
|
style: RectangularSensor.StyleOptions | any;
|
|
12076
12283
|
attr?: any;
|
|
12077
12284
|
orientation?: Cesium.Property;
|
|
12078
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12285
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12079
12286
|
description?: Cesium.Property | string;
|
|
12080
12287
|
viewFrom?: Cesium.Property;
|
|
12081
12288
|
parent?: Cesium.Entity;
|
|
@@ -12363,7 +12570,7 @@ declare namespace WallEntity {
|
|
|
12363
12570
|
* @param options.positions - 坐标位置
|
|
12364
12571
|
* @param options.style - 样式信息
|
|
12365
12572
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12366
|
-
* @param [options.availability] -
|
|
12573
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12367
12574
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12368
12575
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12369
12576
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12393,7 +12600,7 @@ declare class WallEntity extends BasePolyEntity {
|
|
|
12393
12600
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12394
12601
|
style: WallEntity.StyleOptions | any;
|
|
12395
12602
|
attr?: any;
|
|
12396
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12603
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12397
12604
|
description?: Cesium.Property | string;
|
|
12398
12605
|
viewFrom?: Cesium.Property;
|
|
12399
12606
|
parent?: Cesium.Entity;
|
|
@@ -12434,7 +12641,7 @@ declare class WallEntity extends BasePolyEntity {
|
|
|
12434
12641
|
* @param options.positions - 坐标位置
|
|
12435
12642
|
* @param options.style - 样式信息
|
|
12436
12643
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12437
|
-
* @param [options.availability] -
|
|
12644
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12438
12645
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12439
12646
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12440
12647
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12458,7 +12665,7 @@ declare class AttackArrow extends PolygonEntity {
|
|
|
12458
12665
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12459
12666
|
style: PolygonEntity.StyleOptions | any;
|
|
12460
12667
|
attr?: any;
|
|
12461
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12668
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12462
12669
|
description?: Cesium.Property | string;
|
|
12463
12670
|
viewFrom?: Cesium.Property;
|
|
12464
12671
|
parent?: Cesium.Entity;
|
|
@@ -12485,7 +12692,7 @@ declare class AttackArrow extends PolygonEntity {
|
|
|
12485
12692
|
* @param options.positions - 坐标位置
|
|
12486
12693
|
* @param options.style - 样式信息
|
|
12487
12694
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12488
|
-
* @param [options.availability] -
|
|
12695
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12489
12696
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12490
12697
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12491
12698
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12509,7 +12716,7 @@ declare class AttackArrowPW extends PolygonEntity {
|
|
|
12509
12716
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12510
12717
|
style: PolygonEntity.StyleOptions | any;
|
|
12511
12718
|
attr?: any;
|
|
12512
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12719
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12513
12720
|
description?: Cesium.Property | string;
|
|
12514
12721
|
viewFrom?: Cesium.Property;
|
|
12515
12722
|
parent?: Cesium.Entity;
|
|
@@ -12543,7 +12750,7 @@ declare class AttackArrowPW extends PolygonEntity {
|
|
|
12543
12750
|
* @param options.positions - 坐标位置
|
|
12544
12751
|
* @param options.style - 样式信息
|
|
12545
12752
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12546
|
-
* @param [options.availability] -
|
|
12753
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12547
12754
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12548
12755
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12549
12756
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12567,7 +12774,7 @@ declare class AttackArrowYW extends PolygonEntity {
|
|
|
12567
12774
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12568
12775
|
style: PolygonEntity.StyleOptions | any;
|
|
12569
12776
|
attr?: any;
|
|
12570
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12777
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12571
12778
|
description?: Cesium.Property | string;
|
|
12572
12779
|
viewFrom?: Cesium.Property;
|
|
12573
12780
|
parent?: Cesium.Entity;
|
|
@@ -12601,7 +12808,7 @@ declare class AttackArrowYW extends PolygonEntity {
|
|
|
12601
12808
|
* @param options.positions - 坐标位置
|
|
12602
12809
|
* @param options.style - 样式信息
|
|
12603
12810
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12604
|
-
* @param [options.availability] -
|
|
12811
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12605
12812
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12606
12813
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12607
12814
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12625,7 +12832,7 @@ declare class CloseVurve extends PolygonEntity {
|
|
|
12625
12832
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12626
12833
|
style: PolygonEntity.StyleOptions | any;
|
|
12627
12834
|
attr?: any;
|
|
12628
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12835
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12629
12836
|
description?: Cesium.Property | string;
|
|
12630
12837
|
viewFrom?: Cesium.Property;
|
|
12631
12838
|
parent?: Cesium.Entity;
|
|
@@ -12659,7 +12866,7 @@ declare class CloseVurve extends PolygonEntity {
|
|
|
12659
12866
|
* @param options.positions - 坐标位置
|
|
12660
12867
|
* @param options.style - 样式信息
|
|
12661
12868
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12662
|
-
* @param [options.availability] -
|
|
12869
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12663
12870
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12664
12871
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12665
12872
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12683,7 +12890,7 @@ declare class DoubleArrow extends PolygonEntity {
|
|
|
12683
12890
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12684
12891
|
style: PolygonEntity.StyleOptions | any;
|
|
12685
12892
|
attr?: any;
|
|
12686
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12893
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12687
12894
|
description?: Cesium.Property | string;
|
|
12688
12895
|
viewFrom?: Cesium.Property;
|
|
12689
12896
|
parent?: Cesium.Entity;
|
|
@@ -12729,7 +12936,7 @@ declare class EditSector extends EditPolygon {
|
|
|
12729
12936
|
* @param options.positions - 坐标位置
|
|
12730
12937
|
* @param options.style - 样式信息
|
|
12731
12938
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12732
|
-
* @param [options.availability] -
|
|
12939
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12733
12940
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12734
12941
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12735
12942
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12753,7 +12960,7 @@ declare class FineArrow extends PolygonEntity {
|
|
|
12753
12960
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12754
12961
|
style: PolygonEntity.StyleOptions | any;
|
|
12755
12962
|
attr?: any;
|
|
12756
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
12963
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12757
12964
|
description?: Cesium.Property | string;
|
|
12758
12965
|
viewFrom?: Cesium.Property;
|
|
12759
12966
|
parent?: Cesium.Entity;
|
|
@@ -12787,7 +12994,7 @@ declare class FineArrow extends PolygonEntity {
|
|
|
12787
12994
|
* @param options.positions - 坐标位置
|
|
12788
12995
|
* @param options.style - 样式信息
|
|
12789
12996
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12790
|
-
* @param [options.availability] -
|
|
12997
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12791
12998
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12792
12999
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12793
13000
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12811,7 +13018,7 @@ declare class FineArrowYW extends PolygonEntity {
|
|
|
12811
13018
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12812
13019
|
style: PolygonEntity.StyleOptions | any;
|
|
12813
13020
|
attr?: any;
|
|
12814
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13021
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12815
13022
|
description?: Cesium.Property | string;
|
|
12816
13023
|
viewFrom?: Cesium.Property;
|
|
12817
13024
|
parent?: Cesium.Entity;
|
|
@@ -12845,7 +13052,7 @@ declare class FineArrowYW extends PolygonEntity {
|
|
|
12845
13052
|
* @param options.positions - 坐标位置
|
|
12846
13053
|
* @param options.style - 样式信息
|
|
12847
13054
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12848
|
-
* @param [options.availability] -
|
|
13055
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12849
13056
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12850
13057
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12851
13058
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12869,7 +13076,7 @@ declare class GatheringPlace extends PolygonEntity {
|
|
|
12869
13076
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12870
13077
|
style: PolygonEntity.StyleOptions | any;
|
|
12871
13078
|
attr?: any;
|
|
12872
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13079
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12873
13080
|
description?: Cesium.Property | string;
|
|
12874
13081
|
viewFrom?: Cesium.Property;
|
|
12875
13082
|
parent?: Cesium.Entity;
|
|
@@ -12903,7 +13110,7 @@ declare class GatheringPlace extends PolygonEntity {
|
|
|
12903
13110
|
* @param options.positions - 坐标位置
|
|
12904
13111
|
* @param options.style - 样式信息
|
|
12905
13112
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12906
|
-
* @param [options.availability] -
|
|
13113
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12907
13114
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12908
13115
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12909
13116
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12927,7 +13134,7 @@ declare class IsosTriangle extends PolygonEntity {
|
|
|
12927
13134
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12928
13135
|
style: PolygonEntity.StyleOptions | any;
|
|
12929
13136
|
attr?: any;
|
|
12930
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13137
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12931
13138
|
description?: Cesium.Property | string;
|
|
12932
13139
|
viewFrom?: Cesium.Property;
|
|
12933
13140
|
parent?: Cesium.Entity;
|
|
@@ -12961,7 +13168,7 @@ declare class IsosTriangle extends PolygonEntity {
|
|
|
12961
13168
|
* @param options.positions - 坐标位置
|
|
12962
13169
|
* @param options.style - 样式信息
|
|
12963
13170
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
12964
|
-
* @param [options.availability] -
|
|
13171
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
12965
13172
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
12966
13173
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
12967
13174
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -12985,7 +13192,7 @@ declare class Lune extends PolygonEntity {
|
|
|
12985
13192
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
12986
13193
|
style: PolygonEntity.StyleOptions | any;
|
|
12987
13194
|
attr?: any;
|
|
12988
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13195
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
12989
13196
|
description?: Cesium.Property | string;
|
|
12990
13197
|
viewFrom?: Cesium.Property;
|
|
12991
13198
|
parent?: Cesium.Entity;
|
|
@@ -13023,7 +13230,7 @@ declare class Lune extends PolygonEntity {
|
|
|
13023
13230
|
* @param options.style.radius - 区域的半径(单位:米)
|
|
13024
13231
|
* @param [options.style.startAngle = 0] - 区域的开始角度(正东方向为0,顺时针到360度)
|
|
13025
13232
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13026
|
-
* @param [options.availability] -
|
|
13233
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13027
13234
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13028
13235
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13029
13236
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13052,7 +13259,7 @@ declare class Regular extends PolygonEntity {
|
|
|
13052
13259
|
startAngle?: number;
|
|
13053
13260
|
};
|
|
13054
13261
|
attr?: any;
|
|
13055
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13262
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13056
13263
|
description?: Cesium.Property | string;
|
|
13057
13264
|
viewFrom?: Cesium.Property;
|
|
13058
13265
|
parent?: Cesium.Entity;
|
|
@@ -13106,7 +13313,7 @@ declare class Regular extends PolygonEntity {
|
|
|
13106
13313
|
* @param options.style.endAngle - 扇形区域的结束角度(正东方向为0,顺时针到360度)
|
|
13107
13314
|
* @param [options.style.noCenter] - 不连中心点
|
|
13108
13315
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13109
|
-
* @param [options.availability] -
|
|
13316
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13110
13317
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13111
13318
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13112
13319
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13136,7 +13343,7 @@ declare class Sector extends PolygonEntity {
|
|
|
13136
13343
|
noCenter?: boolean;
|
|
13137
13344
|
};
|
|
13138
13345
|
attr?: any;
|
|
13139
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13346
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13140
13347
|
description?: Cesium.Property | string;
|
|
13141
13348
|
viewFrom?: Cesium.Property;
|
|
13142
13349
|
parent?: Cesium.Entity;
|
|
@@ -13200,7 +13407,7 @@ declare class Sector extends PolygonEntity {
|
|
|
13200
13407
|
* @param options.positions - 坐标位置
|
|
13201
13408
|
* @param options.style - 样式信息
|
|
13202
13409
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13203
|
-
* @param [options.availability] -
|
|
13410
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13204
13411
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13205
13412
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13206
13413
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13224,7 +13431,7 @@ declare class StraightArrow extends PolygonEntity {
|
|
|
13224
13431
|
positions: LngLatPoint[] | Cesium.Cartesian3[] | Cesium.PositionProperty | any[];
|
|
13225
13432
|
style: PolygonEntity.StyleOptions | any;
|
|
13226
13433
|
attr?: any;
|
|
13227
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13434
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13228
13435
|
description?: Cesium.Property | string;
|
|
13229
13436
|
viewFrom?: Cesium.Property;
|
|
13230
13437
|
parent?: Cesium.Entity;
|
|
@@ -13262,7 +13469,7 @@ declare class StraightArrow extends PolygonEntity {
|
|
|
13262
13469
|
* @param [options.label] - 测量结果文本的样式
|
|
13263
13470
|
* @param [options.angleDecimal = 1] - 显示的 角度值 文本中保留的小数位
|
|
13264
13471
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13265
|
-
* @param [options.availability] -
|
|
13472
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13266
13473
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13267
13474
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13268
13475
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13295,7 +13502,7 @@ declare class AngleMeasure extends PolylineEntity {
|
|
|
13295
13502
|
label?: LabelEntity.StyleOptions | any;
|
|
13296
13503
|
angleDecimal?: number;
|
|
13297
13504
|
decimal?: number;
|
|
13298
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13505
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13299
13506
|
description?: Cesium.Property | string;
|
|
13300
13507
|
viewFrom?: Cesium.Property;
|
|
13301
13508
|
parent?: Cesium.Entity;
|
|
@@ -13341,7 +13548,7 @@ declare class AngleMeasure extends PolylineEntity {
|
|
|
13341
13548
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13342
13549
|
* @param [options.label] - 测量结果文本的样式
|
|
13343
13550
|
* @param [options.decimal = 2] - 显示的 面积值 文本中保留的小数位
|
|
13344
|
-
* @param [options.availability] -
|
|
13551
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13345
13552
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13346
13553
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13347
13554
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13373,7 +13580,7 @@ declare class AreaMeasure extends PolygonEntity {
|
|
|
13373
13580
|
attr?: any;
|
|
13374
13581
|
label?: LabelEntity.StyleOptions | any;
|
|
13375
13582
|
decimal?: number;
|
|
13376
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13583
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13377
13584
|
description?: Cesium.Property | string;
|
|
13378
13585
|
viewFrom?: Cesium.Property;
|
|
13379
13586
|
parent?: Cesium.Entity;
|
|
@@ -13425,7 +13632,7 @@ declare class AreaMeasure extends PolygonEntity {
|
|
|
13425
13632
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13426
13633
|
* @param [options.label] - 测量结果文本的样式
|
|
13427
13634
|
* @param [options.decimal = 2] - 显示的 面积值 文本中保留的小数位
|
|
13428
|
-
* @param [options.availability] -
|
|
13635
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13429
13636
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13430
13637
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13431
13638
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13457,7 +13664,7 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
|
|
|
13457
13664
|
attr?: any;
|
|
13458
13665
|
label?: LabelEntity.StyleOptions | any;
|
|
13459
13666
|
decimal?: number;
|
|
13460
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13667
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13461
13668
|
description?: Cesium.Property | string;
|
|
13462
13669
|
viewFrom?: Cesium.Property;
|
|
13463
13670
|
parent?: Cesium.Entity;
|
|
@@ -13493,7 +13700,7 @@ declare class AreaSurfaceMeasure extends AreaMeasure {
|
|
|
13493
13700
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13494
13701
|
* @param [options.label] - 测量结果文本的样式
|
|
13495
13702
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13496
|
-
* @param [options.availability] -
|
|
13703
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13497
13704
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13498
13705
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13499
13706
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13525,7 +13732,7 @@ declare class DistanceMeasure extends PolylineEntity {
|
|
|
13525
13732
|
attr?: any;
|
|
13526
13733
|
label?: LabelEntity.StyleOptions | any;
|
|
13527
13734
|
decimal?: number;
|
|
13528
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13735
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13529
13736
|
description?: Cesium.Property | string;
|
|
13530
13737
|
viewFrom?: Cesium.Property;
|
|
13531
13738
|
parent?: Cesium.Entity;
|
|
@@ -13571,7 +13778,7 @@ declare class DistanceMeasure extends PolylineEntity {
|
|
|
13571
13778
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13572
13779
|
* @param [options.label] - 测量结果文本的样式
|
|
13573
13780
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13574
|
-
* @param [options.availability] -
|
|
13781
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13575
13782
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13576
13783
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13577
13784
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13603,7 +13810,7 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
|
|
|
13603
13810
|
attr?: any;
|
|
13604
13811
|
label?: LabelEntity.StyleOptions | any;
|
|
13605
13812
|
decimal?: number;
|
|
13606
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13813
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13607
13814
|
description?: Cesium.Property | string;
|
|
13608
13815
|
viewFrom?: Cesium.Property;
|
|
13609
13816
|
parent?: Cesium.Entity;
|
|
@@ -13639,7 +13846,7 @@ declare class DistanceSurfaceMeasure extends DistanceMeasure {
|
|
|
13639
13846
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13640
13847
|
* @param [options.label] - 测量结果文本的样式
|
|
13641
13848
|
* @param [options.decimal = 2] - 显示的 距离和高度值 文本中保留的小数位
|
|
13642
|
-
* @param [options.availability] -
|
|
13849
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13643
13850
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13644
13851
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13645
13852
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13671,7 +13878,7 @@ declare class HeightMeasure extends PolylineEntity {
|
|
|
13671
13878
|
attr?: any;
|
|
13672
13879
|
label?: LabelEntity.StyleOptions | any;
|
|
13673
13880
|
decimal?: number;
|
|
13674
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13881
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13675
13882
|
description?: Cesium.Property | string;
|
|
13676
13883
|
viewFrom?: Cesium.Property;
|
|
13677
13884
|
parent?: Cesium.Entity;
|
|
@@ -13717,7 +13924,7 @@ declare class HeightMeasure extends PolylineEntity {
|
|
|
13717
13924
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13718
13925
|
* @param [options.label] - 测量结果文本的样式
|
|
13719
13926
|
* @param [options.decimal = 2] - 显示的 距离和高度值 文本中保留的小数位
|
|
13720
|
-
* @param [options.availability] -
|
|
13927
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13721
13928
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13722
13929
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13723
13930
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13749,7 +13956,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
|
|
|
13749
13956
|
attr?: any;
|
|
13750
13957
|
label?: LabelEntity.StyleOptions | any;
|
|
13751
13958
|
decimal?: number;
|
|
13752
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
13959
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13753
13960
|
description?: Cesium.Property | string;
|
|
13754
13961
|
viewFrom?: Cesium.Property;
|
|
13755
13962
|
parent?: Cesium.Entity;
|
|
@@ -13790,7 +13997,7 @@ declare class HeightTriangleMeasure extends HeightMeasure {
|
|
|
13790
13997
|
* @param options.position - 坐标位置
|
|
13791
13998
|
* @param options.style - 样式信息
|
|
13792
13999
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13793
|
-
* @param [options.availability] -
|
|
14000
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13794
14001
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13795
14002
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13796
14003
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13817,7 +14024,7 @@ declare class PointMeasure extends PointEntity {
|
|
|
13817
14024
|
position: LngLatPoint | Cesium.Cartesian3 | Cesium.PositionProperty | number[] | string;
|
|
13818
14025
|
style: PointEntity.StyleOptions | any;
|
|
13819
14026
|
attr?: any;
|
|
13820
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
14027
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13821
14028
|
description?: Cesium.Property | string;
|
|
13822
14029
|
viewFrom?: Cesium.Property;
|
|
13823
14030
|
parent?: Cesium.Entity;
|
|
@@ -13849,7 +14056,7 @@ declare class PointMeasure extends PointEntity {
|
|
|
13849
14056
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
13850
14057
|
* @param [options.label] - 测量结果文本的样式
|
|
13851
14058
|
* @param [options.decimal = 2] - 显示的 距离值 文本中保留的小数位
|
|
13852
|
-
* @param [options.availability] -
|
|
14059
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
13853
14060
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
13854
14061
|
* @param [options.viewFrom] - 观察这个物体时建议的初始偏移量。
|
|
13855
14062
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
@@ -13882,7 +14089,7 @@ declare class SectionMeasure extends DistanceMeasure {
|
|
|
13882
14089
|
attr?: any;
|
|
13883
14090
|
label?: LabelEntity.StyleOptions | any;
|
|
13884
14091
|
decimal?: number;
|
|
13885
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
14092
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
13886
14093
|
description?: Cesium.Property | string;
|
|
13887
14094
|
viewFrom?: Cesium.Property;
|
|
13888
14095
|
parent?: Cesium.Entity;
|
|
@@ -14147,6 +14354,7 @@ declare class VolumeMeasure extends AreaMeasure {
|
|
|
14147
14354
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14148
14355
|
* @param [options.name = ''] - 矢量数据名称
|
|
14149
14356
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14357
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14150
14358
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14151
14359
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14152
14360
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14189,6 +14397,7 @@ declare class BasePointPrimitive extends BasePrimitive {
|
|
|
14189
14397
|
id?: string | number;
|
|
14190
14398
|
name?: string;
|
|
14191
14399
|
show?: boolean;
|
|
14400
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14192
14401
|
eventParent?: BaseClass | boolean;
|
|
14193
14402
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14194
14403
|
flyTo?: boolean;
|
|
@@ -14322,6 +14531,7 @@ declare class BasePointPrimitive extends BasePrimitive {
|
|
|
14322
14531
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14323
14532
|
* @param [options.name = ''] - 矢量数据名称
|
|
14324
14533
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14534
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14325
14535
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14326
14536
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14327
14537
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14352,6 +14562,7 @@ declare class BasePolyPrimitive extends BasePrimitive {
|
|
|
14352
14562
|
id?: string | number;
|
|
14353
14563
|
name?: string;
|
|
14354
14564
|
show?: boolean;
|
|
14565
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14355
14566
|
eventParent?: BaseClass | boolean;
|
|
14356
14567
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14357
14568
|
flyTo?: boolean;
|
|
@@ -14451,6 +14662,7 @@ declare class BasePolyPrimitive extends BasePrimitive {
|
|
|
14451
14662
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14452
14663
|
* @param [options.name = ''] - 矢量数据名称
|
|
14453
14664
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14665
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14454
14666
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14455
14667
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14456
14668
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14482,6 +14694,7 @@ declare class BasePrimitive extends BaseGraphic {
|
|
|
14482
14694
|
id?: string | number;
|
|
14483
14695
|
name?: string;
|
|
14484
14696
|
show?: boolean;
|
|
14697
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14485
14698
|
eventParent?: BaseClass | boolean;
|
|
14486
14699
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14487
14700
|
flyTo?: boolean;
|
|
@@ -14602,6 +14815,7 @@ declare class BasePrimitive extends BaseGraphic {
|
|
|
14602
14815
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14603
14816
|
* @param [options.name = ''] - 矢量数据名称
|
|
14604
14817
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14818
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14605
14819
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14606
14820
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14607
14821
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14625,6 +14839,7 @@ declare class BillboardPrimitive extends BasePointPrimitive {
|
|
|
14625
14839
|
id?: string | number;
|
|
14626
14840
|
name?: string;
|
|
14627
14841
|
show?: boolean;
|
|
14842
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14628
14843
|
eventParent?: BaseClass | boolean;
|
|
14629
14844
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14630
14845
|
flyTo?: boolean;
|
|
@@ -14739,6 +14954,7 @@ declare namespace BoxPrimitive {
|
|
|
14739
14954
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14740
14955
|
* @param [options.name = ''] - 矢量数据名称
|
|
14741
14956
|
* @param [options.show = true] - 矢量数据是否显示
|
|
14957
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14742
14958
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14743
14959
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14744
14960
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14770,6 +14986,7 @@ declare class BoxPrimitive extends BasePointPrimitive {
|
|
|
14770
14986
|
id?: string | number;
|
|
14771
14987
|
name?: string;
|
|
14772
14988
|
show?: boolean;
|
|
14989
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14773
14990
|
eventParent?: BaseClass | boolean;
|
|
14774
14991
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14775
14992
|
flyTo?: boolean;
|
|
@@ -14878,6 +15095,7 @@ declare namespace CirclePrimitive {
|
|
|
14878
15095
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
14879
15096
|
* @param [options.name = ''] - 矢量数据名称
|
|
14880
15097
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15098
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
14881
15099
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
14882
15100
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
14883
15101
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -14909,6 +15127,7 @@ declare class CirclePrimitive extends BasePointPrimitive {
|
|
|
14909
15127
|
id?: string | number;
|
|
14910
15128
|
name?: string;
|
|
14911
15129
|
show?: boolean;
|
|
15130
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
14912
15131
|
eventParent?: BaseClass | boolean;
|
|
14913
15132
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
14914
15133
|
flyTo?: boolean;
|
|
@@ -15029,6 +15248,7 @@ declare namespace CloudPrimitive {
|
|
|
15029
15248
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15030
15249
|
* @param [options.name = ''] - 矢量数据名称
|
|
15031
15250
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15251
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15032
15252
|
* @param [options.stopPropagation = false] - 当前类中事件是否停止冒泡, false时:事件冒泡到layer中。
|
|
15033
15253
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
15034
15254
|
* @param [options.flyToOptions] - 加载完成数据后是否自动飞行定位到数据所在的区域的对应 {@link BaseGraphic#flyTo}方法参数。
|
|
@@ -15046,6 +15266,7 @@ declare class CloudPrimitive extends BasePointPrimitive {
|
|
|
15046
15266
|
id?: string | number;
|
|
15047
15267
|
name?: string;
|
|
15048
15268
|
show?: boolean;
|
|
15269
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15049
15270
|
stopPropagation?: boolean;
|
|
15050
15271
|
flyTo?: boolean;
|
|
15051
15272
|
flyToOptions?: any;
|
|
@@ -15245,6 +15466,7 @@ declare namespace ConeTrackPrimitive {
|
|
|
15245
15466
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15246
15467
|
* @param [options.name = ''] - 矢量数据名称
|
|
15247
15468
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15469
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15248
15470
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15249
15471
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15250
15472
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15276,6 +15498,7 @@ declare class ConeTrackPrimitive extends CylinderPrimitive {
|
|
|
15276
15498
|
id?: string | number;
|
|
15277
15499
|
name?: string;
|
|
15278
15500
|
show?: boolean;
|
|
15501
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15279
15502
|
eventParent?: BaseClass | boolean;
|
|
15280
15503
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15281
15504
|
flyTo?: boolean;
|
|
@@ -15307,7 +15530,7 @@ declare namespace CorridorPrimitive {
|
|
|
15307
15530
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
15308
15531
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
15309
15532
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
15310
|
-
* @property [color = "#
|
|
15533
|
+
* @property [color = "#ffffff"] - 颜色
|
|
15311
15534
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
15312
15535
|
* @property [outline = false] - 是否边框
|
|
15313
15536
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
@@ -15394,6 +15617,7 @@ declare namespace CorridorPrimitive {
|
|
|
15394
15617
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15395
15618
|
* @param [options.name = ''] - 矢量数据名称
|
|
15396
15619
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15620
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15397
15621
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15398
15622
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15399
15623
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15424,6 +15648,7 @@ declare class CorridorPrimitive extends BasePolyPrimitive {
|
|
|
15424
15648
|
id?: string | number;
|
|
15425
15649
|
name?: string;
|
|
15426
15650
|
show?: boolean;
|
|
15651
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15427
15652
|
eventParent?: BaseClass | boolean;
|
|
15428
15653
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15429
15654
|
flyTo?: boolean;
|
|
@@ -15516,6 +15741,7 @@ declare namespace CylinderPrimitive {
|
|
|
15516
15741
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15517
15742
|
* @param [options.name = ''] - 矢量数据名称
|
|
15518
15743
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15744
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15519
15745
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15520
15746
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15521
15747
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15547,6 +15773,7 @@ declare class CylinderPrimitive extends BasePointPrimitive {
|
|
|
15547
15773
|
id?: string | number;
|
|
15548
15774
|
name?: string;
|
|
15549
15775
|
show?: boolean;
|
|
15776
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15550
15777
|
eventParent?: BaseClass | boolean;
|
|
15551
15778
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15552
15779
|
flyTo?: boolean;
|
|
@@ -15558,7 +15785,7 @@ declare namespace DiffuseWall {
|
|
|
15558
15785
|
/**
|
|
15559
15786
|
* 立体面(或圆)散射效果 支持的样式信息
|
|
15560
15787
|
* @property [diffHeight = 100] - 墙高
|
|
15561
|
-
* @property [color = "#
|
|
15788
|
+
* @property [color = "#ffffff"] - 颜色
|
|
15562
15789
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
15563
15790
|
* @property [speed = 10] - 扩散的速度,值越大越快
|
|
15564
15791
|
* @property [maxScale = 1] - 扩散的最大比例
|
|
@@ -15589,6 +15816,7 @@ declare namespace DiffuseWall {
|
|
|
15589
15816
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15590
15817
|
* @param [options.name = ''] - 矢量数据名称
|
|
15591
15818
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15819
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15592
15820
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15593
15821
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15594
15822
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15608,6 +15836,7 @@ declare class DiffuseWall extends BasePolyPrimitive {
|
|
|
15608
15836
|
id?: string | number;
|
|
15609
15837
|
name?: string;
|
|
15610
15838
|
show?: boolean;
|
|
15839
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15611
15840
|
eventParent?: BaseClass | boolean;
|
|
15612
15841
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15613
15842
|
flyTo?: boolean;
|
|
@@ -15712,6 +15941,7 @@ declare namespace DoubleSidedPlane {
|
|
|
15712
15941
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15713
15942
|
* @param [options.name = ''] - 矢量数据名称
|
|
15714
15943
|
* @param [options.show = true] - 矢量数据是否显示
|
|
15944
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15715
15945
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15716
15946
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15717
15947
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15743,6 +15973,7 @@ declare class DoubleSidedPlane extends BasePointPrimitive {
|
|
|
15743
15973
|
id?: string | number;
|
|
15744
15974
|
name?: string;
|
|
15745
15975
|
show?: boolean;
|
|
15976
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15746
15977
|
eventParent?: BaseClass | boolean;
|
|
15747
15978
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15748
15979
|
flyTo?: boolean;
|
|
@@ -15783,6 +16014,7 @@ declare namespace DynamicRiver {
|
|
|
15783
16014
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15784
16015
|
* @param [options.name = ''] - 矢量数据名称
|
|
15785
16016
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16017
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15786
16018
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15787
16019
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15788
16020
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15796,6 +16028,7 @@ declare class DynamicRiver extends BasePolyPrimitive {
|
|
|
15796
16028
|
id?: string | number;
|
|
15797
16029
|
name?: string;
|
|
15798
16030
|
show?: boolean;
|
|
16031
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15799
16032
|
eventParent?: BaseClass | boolean;
|
|
15800
16033
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15801
16034
|
flyTo?: boolean;
|
|
@@ -15961,6 +16194,7 @@ declare namespace EllipsoidPrimitive {
|
|
|
15961
16194
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
15962
16195
|
* @param [options.name = ''] - 矢量数据名称
|
|
15963
16196
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16197
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
15964
16198
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
15965
16199
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
15966
16200
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -15992,6 +16226,7 @@ declare class EllipsoidPrimitive extends BasePointPrimitive {
|
|
|
15992
16226
|
id?: string | number;
|
|
15993
16227
|
name?: string;
|
|
15994
16228
|
show?: boolean;
|
|
16229
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
15995
16230
|
eventParent?: BaseClass | boolean;
|
|
15996
16231
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
15997
16232
|
flyTo?: boolean;
|
|
@@ -16063,6 +16298,7 @@ declare namespace FrustumPrimitive {
|
|
|
16063
16298
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
16064
16299
|
* @param [options.targetPosition] - 追踪的目标位置
|
|
16065
16300
|
* @param [options.camera] - 支持直接传入相机对象,替代style中的方向参数
|
|
16301
|
+
* @param [options.fixedFrameTransform = Cesium.Transforms.northEastDownToFixedFrame] - 参考系
|
|
16066
16302
|
* @param [options.appearance] - [cesium原生]用于渲染图元的外观。
|
|
16067
16303
|
* @param [options.attributes] - [cesium原生]每个实例的属性。
|
|
16068
16304
|
* @param [options.depthFailAppearance] - 当深度测试失败时,用于为该图元着色的外观。
|
|
@@ -16083,6 +16319,7 @@ declare namespace FrustumPrimitive {
|
|
|
16083
16319
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16084
16320
|
* @param [options.name = ''] - 矢量数据名称
|
|
16085
16321
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16322
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16086
16323
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16087
16324
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16088
16325
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16095,6 +16332,7 @@ declare class FrustumPrimitive extends BasePointPrimitive {
|
|
|
16095
16332
|
attr?: any;
|
|
16096
16333
|
targetPosition?: LngLatPoint | Cesium.Cartesian3 | number[];
|
|
16097
16334
|
camera?: Cesium.Camera;
|
|
16335
|
+
fixedFrameTransform?: Cesium.Transforms.LocalFrameToFixedFrame;
|
|
16098
16336
|
appearance?: Cesium.Appearance;
|
|
16099
16337
|
attributes?: Cesium.Appearance;
|
|
16100
16338
|
depthFailAppearance?: Cesium.Appearance;
|
|
@@ -16115,6 +16353,7 @@ declare class FrustumPrimitive extends BasePointPrimitive {
|
|
|
16115
16353
|
id?: string | number;
|
|
16116
16354
|
name?: string;
|
|
16117
16355
|
show?: boolean;
|
|
16356
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16118
16357
|
eventParent?: BaseClass | boolean;
|
|
16119
16358
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16120
16359
|
flyTo?: boolean;
|
|
@@ -16192,6 +16431,7 @@ declare namespace LabelPrimitive {
|
|
|
16192
16431
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16193
16432
|
* @param [options.name = ''] - 矢量数据名称
|
|
16194
16433
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16434
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16195
16435
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16196
16436
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16197
16437
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16215,6 +16455,7 @@ declare class LabelPrimitive extends BasePointPrimitive {
|
|
|
16215
16455
|
id?: string | number;
|
|
16216
16456
|
name?: string;
|
|
16217
16457
|
show?: boolean;
|
|
16458
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16218
16459
|
eventParent?: BaseClass | boolean;
|
|
16219
16460
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16220
16461
|
flyTo?: boolean;
|
|
@@ -16268,6 +16509,7 @@ declare namespace LightCone {
|
|
|
16268
16509
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16269
16510
|
* @param [options.name = ''] - 矢量数据名称
|
|
16270
16511
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16512
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16271
16513
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16272
16514
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16273
16515
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16286,6 +16528,7 @@ declare class LightCone extends BasePointPrimitive {
|
|
|
16286
16528
|
id?: string | number;
|
|
16287
16529
|
name?: string;
|
|
16288
16530
|
show?: boolean;
|
|
16531
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16289
16532
|
eventParent?: BaseClass | boolean;
|
|
16290
16533
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16291
16534
|
flyTo?: boolean;
|
|
@@ -16322,7 +16565,7 @@ declare namespace ModelPrimitive {
|
|
|
16322
16565
|
* @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
|
|
16323
16566
|
* @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
|
|
16324
16567
|
* @property [fill = false] - 是否填充,指定与模型渲染颜色混合
|
|
16325
|
-
* @property [color = "#
|
|
16568
|
+
* @property [color = "#ffffff"] - 颜色
|
|
16326
16569
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
16327
16570
|
* @property [colorBlendMode = ColorBlendMode.HIGHLIGHT] - 指定颜色如何与模型混合。
|
|
16328
16571
|
* @property [colorBlendAmount = 0.5] - 当colorBlendMode为MIX时指定颜色强度的数字属性。0.0的值表示模型渲染的颜色,1.0的值表示纯色,任何介于两者之间的值表示两者的混合。
|
|
@@ -16496,6 +16739,7 @@ declare namespace ModelPrimitive {
|
|
|
16496
16739
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16497
16740
|
* @param [options.name = ''] - 矢量数据名称
|
|
16498
16741
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16742
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16499
16743
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16500
16744
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16501
16745
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16529,6 +16773,7 @@ declare class ModelPrimitive extends BasePointPrimitive {
|
|
|
16529
16773
|
id?: string | number;
|
|
16530
16774
|
name?: string;
|
|
16531
16775
|
show?: boolean;
|
|
16776
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16532
16777
|
eventParent?: BaseClass | boolean;
|
|
16533
16778
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16534
16779
|
flyTo?: boolean;
|
|
@@ -16607,6 +16852,7 @@ declare namespace Pit {
|
|
|
16607
16852
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16608
16853
|
* @param [options.name = ''] - 矢量数据名称
|
|
16609
16854
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16855
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16610
16856
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16611
16857
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16612
16858
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16637,6 +16883,7 @@ declare class Pit extends BasePolyPrimitive {
|
|
|
16637
16883
|
id?: string | number;
|
|
16638
16884
|
name?: string;
|
|
16639
16885
|
show?: boolean;
|
|
16886
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16640
16887
|
eventParent?: BaseClass | boolean;
|
|
16641
16888
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16642
16889
|
flyTo?: boolean;
|
|
@@ -16741,6 +16988,7 @@ declare namespace PlanePrimitive {
|
|
|
16741
16988
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16742
16989
|
* @param [options.name = ''] - 矢量数据名称
|
|
16743
16990
|
* @param [options.show = true] - 矢量数据是否显示
|
|
16991
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16744
16992
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16745
16993
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16746
16994
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16772,6 +17020,7 @@ declare class PlanePrimitive extends BasePointPrimitive {
|
|
|
16772
17020
|
id?: string | number;
|
|
16773
17021
|
name?: string;
|
|
16774
17022
|
show?: boolean;
|
|
17023
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16775
17024
|
eventParent?: BaseClass | boolean;
|
|
16776
17025
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16777
17026
|
flyTo?: boolean;
|
|
@@ -16787,7 +17036,7 @@ declare namespace PointPrimitive {
|
|
|
16787
17036
|
/**
|
|
16788
17037
|
* 像素点 支持的样式信息
|
|
16789
17038
|
* @property [pixelSize = 10] - 像素大小
|
|
16790
|
-
* @property [color = "#
|
|
17039
|
+
* @property [color = "#ffffff"] - 颜色
|
|
16791
17040
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
16792
17041
|
* @property [outline = false] - 是否边框
|
|
16793
17042
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
@@ -16855,6 +17104,7 @@ declare namespace PointPrimitive {
|
|
|
16855
17104
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
16856
17105
|
* @param [options.name = ''] - 矢量数据名称
|
|
16857
17106
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17107
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
16858
17108
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
16859
17109
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
16860
17110
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -16879,6 +17129,7 @@ declare class PointPrimitive extends BasePointPrimitive {
|
|
|
16879
17129
|
id?: string | number;
|
|
16880
17130
|
name?: string;
|
|
16881
17131
|
show?: boolean;
|
|
17132
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
16882
17133
|
eventParent?: BaseClass | boolean;
|
|
16883
17134
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
16884
17135
|
flyTo?: boolean;
|
|
@@ -16900,7 +17151,7 @@ declare namespace PolygonPrimitive {
|
|
|
16900
17151
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
16901
17152
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
16902
17153
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
16903
|
-
* @property [color = "#
|
|
17154
|
+
* @property [color = "#ffffff"] - 颜色
|
|
16904
17155
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
16905
17156
|
* @property [randomColor = false] - 是否随机颜色
|
|
16906
17157
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
@@ -17014,6 +17265,7 @@ declare namespace PolygonPrimitive {
|
|
|
17014
17265
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17015
17266
|
* @param [options.name = ''] - 矢量数据名称
|
|
17016
17267
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17268
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17017
17269
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17018
17270
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17019
17271
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17044,6 +17296,7 @@ declare class PolygonPrimitive extends BasePolyPrimitive {
|
|
|
17044
17296
|
id?: string | number;
|
|
17045
17297
|
name?: string;
|
|
17046
17298
|
show?: boolean;
|
|
17299
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17047
17300
|
eventParent?: BaseClass | boolean;
|
|
17048
17301
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17049
17302
|
flyTo?: boolean;
|
|
@@ -17070,7 +17323,7 @@ declare namespace PolylinePrimitive {
|
|
|
17070
17323
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17071
17324
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17072
17325
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17073
|
-
* @property [color = "#
|
|
17326
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17074
17327
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17075
17328
|
* @property [randomColor = false] - 是否随机颜色
|
|
17076
17329
|
* @property [colors] - 定义每顶点或每段颜色 的数组。
|
|
@@ -17151,6 +17404,7 @@ declare namespace PolylinePrimitive {
|
|
|
17151
17404
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17152
17405
|
* @param [options.name = ''] - 矢量数据名称
|
|
17153
17406
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17407
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17154
17408
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17155
17409
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17156
17410
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17181,6 +17435,7 @@ declare class PolylinePrimitive extends BasePolyPrimitive {
|
|
|
17181
17435
|
id?: string | number;
|
|
17182
17436
|
name?: string;
|
|
17183
17437
|
show?: boolean;
|
|
17438
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17184
17439
|
eventParent?: BaseClass | boolean;
|
|
17185
17440
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17186
17441
|
flyTo?: boolean;
|
|
@@ -17202,7 +17457,7 @@ declare namespace PolylineVolumePrimitive {
|
|
|
17202
17457
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17203
17458
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17204
17459
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17205
|
-
* @property [color = "#
|
|
17460
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17206
17461
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17207
17462
|
* @property [cornerType = CornerType.ROUNDED] - 指定边角的样式。
|
|
17208
17463
|
* @property [granularity = Cesium.Math.RADIANS_PER_DEGREE] - 指定每个纬度点和经度点之间的角距离。
|
|
@@ -17278,6 +17533,7 @@ declare namespace PolylineVolumePrimitive {
|
|
|
17278
17533
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17279
17534
|
* @param [options.name = ''] - 矢量数据名称
|
|
17280
17535
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17536
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17281
17537
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17282
17538
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17283
17539
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17308,6 +17564,7 @@ declare class PolylineVolumePrimitive extends BasePolyPrimitive {
|
|
|
17308
17564
|
id?: string | number;
|
|
17309
17565
|
name?: string;
|
|
17310
17566
|
show?: boolean;
|
|
17567
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17311
17568
|
eventParent?: BaseClass | boolean;
|
|
17312
17569
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17313
17570
|
flyTo?: boolean;
|
|
@@ -17321,7 +17578,7 @@ declare namespace RectanglePrimitive {
|
|
|
17321
17578
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17322
17579
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17323
17580
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17324
|
-
* @property [color = "#
|
|
17581
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17325
17582
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17326
17583
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
17327
17584
|
* @property [outline = false] - 是否边框
|
|
@@ -17400,6 +17657,7 @@ declare namespace RectanglePrimitive {
|
|
|
17400
17657
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17401
17658
|
* @param [options.name = ''] - 矢量数据名称
|
|
17402
17659
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17660
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17403
17661
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17404
17662
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17405
17663
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17431,6 +17689,7 @@ declare class RectanglePrimitive extends BasePolyPrimitive {
|
|
|
17431
17689
|
id?: string | number;
|
|
17432
17690
|
name?: string;
|
|
17433
17691
|
show?: boolean;
|
|
17692
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17434
17693
|
eventParent?: BaseClass | boolean;
|
|
17435
17694
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17436
17695
|
flyTo?: boolean;
|
|
@@ -17479,6 +17738,8 @@ declare namespace ReflectionWater {
|
|
|
17479
17738
|
* @property [ripple = 50.0] - 波纹大小(数值越大,波纹越密集)
|
|
17480
17739
|
* @property [distortion = 3.7] - 倒影的扭曲程度
|
|
17481
17740
|
* @property [shiny = 100.0] - 光照强度
|
|
17741
|
+
* @property [animationSpeed = 1.0] - 控制水的动画速度的数字。
|
|
17742
|
+
* @property [specularIntensity = 0.3] - 控制镜面反射强度的数字。
|
|
17482
17743
|
* @property [lightDirection = new Cesium.Cartesian3(0, 0, 1)] - 光照方向,单位向量。原点为水面中心点,水面中心点由 options.positions 决定,X、Y、Z轴对应水面中心点的东、北、上方向。(默认为0,0,1)
|
|
17483
17744
|
* @property [stRotation = 0] - 水流方向的角度(弧度值),正北为0,逆时针旋转
|
|
17484
17745
|
* @property [stRotationDegree = 0] - 水流方向的角度(度数值,0-360度),与stRotation二选一
|
|
@@ -17498,6 +17759,8 @@ declare namespace ReflectionWater {
|
|
|
17498
17759
|
ripple?: number;
|
|
17499
17760
|
distortion?: number;
|
|
17500
17761
|
shiny?: number;
|
|
17762
|
+
animationSpeed?: number;
|
|
17763
|
+
specularIntensity?: number;
|
|
17501
17764
|
lightDirection?: Cesium.Cartesian3;
|
|
17502
17765
|
stRotation?: number;
|
|
17503
17766
|
stRotationDegree?: number;
|
|
@@ -17535,6 +17798,7 @@ declare namespace ReflectionWater {
|
|
|
17535
17798
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17536
17799
|
* @param [options.name = ''] - 矢量数据名称
|
|
17537
17800
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17801
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17538
17802
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17539
17803
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17540
17804
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17563,6 +17827,7 @@ declare class ReflectionWater extends PolygonPrimitive {
|
|
|
17563
17827
|
id?: string | number;
|
|
17564
17828
|
name?: string;
|
|
17565
17829
|
show?: boolean;
|
|
17830
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17566
17831
|
eventParent?: BaseClass | boolean;
|
|
17567
17832
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17568
17833
|
flyTo?: boolean;
|
|
@@ -17599,6 +17864,7 @@ declare namespace Road {
|
|
|
17599
17864
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17600
17865
|
* @param [options.name = ''] - 矢量数据名称
|
|
17601
17866
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17867
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17602
17868
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17603
17869
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17604
17870
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17612,6 +17878,7 @@ declare class Road extends DynamicRiver {
|
|
|
17612
17878
|
id?: string | number;
|
|
17613
17879
|
name?: string;
|
|
17614
17880
|
show?: boolean;
|
|
17881
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17615
17882
|
eventParent?: BaseClass | boolean;
|
|
17616
17883
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17617
17884
|
flyTo?: boolean;
|
|
@@ -17623,7 +17890,7 @@ declare namespace ScrollWall {
|
|
|
17623
17890
|
/**
|
|
17624
17891
|
* 走马灯围墙效果 支持的样式信息
|
|
17625
17892
|
* @property [diffHeight = 100] - 墙高
|
|
17626
|
-
* @property [color = "#
|
|
17893
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17627
17894
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17628
17895
|
* @property [speed = 10] - 速度,值越大越快
|
|
17629
17896
|
* @property [reverse = false] - 方向:true往上、false往下
|
|
@@ -17659,6 +17926,7 @@ declare namespace ScrollWall {
|
|
|
17659
17926
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17660
17927
|
* @param [options.name = ''] - 矢量数据名称
|
|
17661
17928
|
* @param [options.show = true] - 矢量数据是否显示
|
|
17929
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17662
17930
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17663
17931
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17664
17932
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17677,6 +17945,7 @@ declare class ScrollWall extends BasePolyPrimitive {
|
|
|
17677
17945
|
id?: string | number;
|
|
17678
17946
|
name?: string;
|
|
17679
17947
|
show?: boolean;
|
|
17948
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17680
17949
|
eventParent?: BaseClass | boolean;
|
|
17681
17950
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17682
17951
|
flyTo?: boolean;
|
|
@@ -17700,7 +17969,7 @@ declare namespace ThickWall {
|
|
|
17700
17969
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17701
17970
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17702
17971
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17703
|
-
* @property [color = "#
|
|
17972
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17704
17973
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17705
17974
|
* @property [closure = false] - 是否闭合
|
|
17706
17975
|
* @property [hasShadows = false] - 是否阴影
|
|
@@ -17755,6 +18024,7 @@ declare namespace ThickWall {
|
|
|
17755
18024
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17756
18025
|
* @param [options.name = ''] - 矢量数据名称
|
|
17757
18026
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18027
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17758
18028
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17759
18029
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17760
18030
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17773,6 +18043,7 @@ declare class ThickWall extends BasePolyPrimitive {
|
|
|
17773
18043
|
id?: string | number;
|
|
17774
18044
|
name?: string;
|
|
17775
18045
|
show?: boolean;
|
|
18046
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17776
18047
|
eventParent?: BaseClass | boolean;
|
|
17777
18048
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17778
18049
|
flyTo?: boolean;
|
|
@@ -17828,6 +18099,7 @@ declare namespace VideoPrimitive {
|
|
|
17828
18099
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17829
18100
|
* @param [options.name = ''] - 矢量数据名称
|
|
17830
18101
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18102
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17831
18103
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17832
18104
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17833
18105
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -17858,6 +18130,7 @@ declare class VideoPrimitive extends BasePolyPrimitive {
|
|
|
17858
18130
|
id?: string | number;
|
|
17859
18131
|
name?: string;
|
|
17860
18132
|
show?: boolean;
|
|
18133
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
17861
18134
|
eventParent?: BaseClass | boolean;
|
|
17862
18135
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
17863
18136
|
flyTo?: boolean;
|
|
@@ -17898,7 +18171,7 @@ declare namespace WallPrimitive {
|
|
|
17898
18171
|
* @property [materialType = "Color"] - 填充材质类型 ,可选项:{@link MaterialType}
|
|
17899
18172
|
* @property [materialOptions] - materialType对应的{@link MaterialType}中材质参数
|
|
17900
18173
|
* @property [material] - 指定用于填充的材质,指定material后`materialType`和`materialOptions`将被覆盖。
|
|
17901
|
-
* @property [color = "#
|
|
18174
|
+
* @property [color = "#ffffff"] - 颜色
|
|
17902
18175
|
* @property [opacity = 1.0] - 透明度,取值范围:0.0-1.0
|
|
17903
18176
|
* @property [image] - 图片材质时,贴图的url,等价于 materialType:'Image'
|
|
17904
18177
|
* @property [closure = false] - 是否闭合
|
|
@@ -17973,6 +18246,7 @@ declare namespace WallPrimitive {
|
|
|
17973
18246
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
17974
18247
|
* @param [options.name = ''] - 矢量数据名称
|
|
17975
18248
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18249
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
17976
18250
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
17977
18251
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
17978
18252
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -18003,6 +18277,7 @@ declare class WallPrimitive extends BasePolyPrimitive {
|
|
|
18003
18277
|
id?: string | number;
|
|
18004
18278
|
name?: string;
|
|
18005
18279
|
show?: boolean;
|
|
18280
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
18006
18281
|
eventParent?: BaseClass | boolean;
|
|
18007
18282
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
18008
18283
|
flyTo?: boolean;
|
|
@@ -18120,6 +18395,7 @@ declare namespace Water {
|
|
|
18120
18395
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
18121
18396
|
* @param [options.name = ''] - 矢量数据名称
|
|
18122
18397
|
* @param [options.show = true] - 矢量数据是否显示
|
|
18398
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
18123
18399
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的图层对象,false时不冒泡事件
|
|
18124
18400
|
* @param [options.allowDrillPick] - 是否允许鼠标穿透拾取
|
|
18125
18401
|
* @param [options.flyTo] - 加载完成数据后是否自动飞行定位到数据所在的区域。
|
|
@@ -18147,6 +18423,7 @@ declare class Water extends PolygonPrimitive {
|
|
|
18147
18423
|
id?: string | number;
|
|
18148
18424
|
name?: string;
|
|
18149
18425
|
show?: boolean;
|
|
18426
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
18150
18427
|
eventParent?: BaseClass | boolean;
|
|
18151
18428
|
allowDrillPick?: boolean | ((...params: any[]) => any);
|
|
18152
18429
|
flyTo?: boolean;
|
|
@@ -20105,7 +20382,7 @@ declare class GraphicGroupLayer extends GroupLayer {
|
|
|
20105
20382
|
* @param [options.maxPointNum] - 线面数据时限定的最大坐标个数
|
|
20106
20383
|
* @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
|
|
20107
20384
|
* @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
|
|
20108
|
-
* @param [options.availability] -
|
|
20385
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
20109
20386
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
20110
20387
|
* @returns 绘制创建完成的Promise,等价于success参数
|
|
20111
20388
|
*/
|
|
@@ -20118,7 +20395,7 @@ declare class GraphicGroupLayer extends GroupLayer {
|
|
|
20118
20395
|
maxPointNum?: number;
|
|
20119
20396
|
drawShow?: boolean;
|
|
20120
20397
|
addHeight?: number;
|
|
20121
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
20398
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
20122
20399
|
description?: Cesium.Property | string;
|
|
20123
20400
|
}): Promise<BaseGraphic | any>;
|
|
20124
20401
|
/**
|
|
@@ -20594,7 +20871,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
|
|
|
20594
20871
|
* @param [options.validDrawPosition] - 外部自定义校验坐标,比如判断限定在指定区域内绘制。
|
|
20595
20872
|
* @param [options.drawShow = true] - 绘制时,是否自动隐藏entity,可避免拾取坐标存在问题。
|
|
20596
20873
|
* @param [options.addHeight] - 在绘制时,在绘制点的基础上增加的高度值
|
|
20597
|
-
* @param [options.availability] -
|
|
20874
|
+
* @param [options.availability] - 指定时间范围内显示该对象
|
|
20598
20875
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
20599
20876
|
* @returns 绘制创建完成的Promise,等价于success参数
|
|
20600
20877
|
*/
|
|
@@ -20609,7 +20886,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
|
|
|
20609
20886
|
validDrawPosition?: (...params: any[]) => any;
|
|
20610
20887
|
drawShow?: boolean;
|
|
20611
20888
|
addHeight?: number;
|
|
20612
|
-
availability?: Cesium.TimeIntervalCollection;
|
|
20889
|
+
availability?: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any;
|
|
20613
20890
|
description?: Cesium.Property | string;
|
|
20614
20891
|
}): Promise<BaseGraphic | any>;
|
|
20615
20892
|
/**
|
|
@@ -26667,6 +26944,22 @@ declare class Map extends BaseClass {
|
|
|
26667
26944
|
complete?: Cesium.Camera.FlightCompleteCallback;
|
|
26668
26945
|
cancel?: Cesium.Camera.FlightCancelledCallback;
|
|
26669
26946
|
}): Promise<boolean>;
|
|
26947
|
+
/**
|
|
26948
|
+
* 设置相机pitch值,保持地图中心位置不变。
|
|
26949
|
+
* @param heading - 方向角度值, 0-360
|
|
26950
|
+
* @param [options] - 具有以下属性的对象:
|
|
26951
|
+
* @param [options.pitch] - 俯仰角度值,绕垂直于地心的轴旋转角度, -90至90
|
|
26952
|
+
* @param [options.duration] - 飞行持续时间(秒)。如果省略,内部会根据飞行距离计算出理想的飞行时间。
|
|
26953
|
+
* @param [options.complete] - 飞行完成后要执行的函数。
|
|
26954
|
+
* @param [options.cancel] - 飞行取消时要执行的函数。
|
|
26955
|
+
* @returns 如果飞行成功则解析为true的承诺,如果当前未在场景中可视化目标或取消飞行,则为false的Promise
|
|
26956
|
+
*/
|
|
26957
|
+
setHeading(heading: number, options?: {
|
|
26958
|
+
pitch?: number;
|
|
26959
|
+
duration?: number;
|
|
26960
|
+
complete?: Cesium.Camera.FlightCompleteCallback;
|
|
26961
|
+
cancel?: Cesium.Camera.FlightCancelledCallback;
|
|
26962
|
+
}): Promise<boolean>;
|
|
26670
26963
|
/**
|
|
26671
26964
|
* 停止视角定位等操作
|
|
26672
26965
|
* @returns 当前对象本身,可以链式调用
|
|
@@ -27148,7 +27441,7 @@ declare class Map extends BaseClass {
|
|
|
27148
27441
|
/**
|
|
27149
27442
|
* 解除绑定指定类型事件监听器
|
|
27150
27443
|
* @param [types] - 事件类型,未传值时解绑所有事件
|
|
27151
|
-
* @param [fn] -
|
|
27444
|
+
* @param [fn] - 绑定的监听器回调方法,未传值时解绑所有指定类型对应事件,特殊说明:map.on监听的Cesium相关原生事件时必须传入该参数
|
|
27152
27445
|
* @param [context] - 侦听器的上下文(this关键字将指向的对象)。
|
|
27153
27446
|
* @returns 当前对象本身,可以链式调用
|
|
27154
27447
|
*/
|
|
@@ -28949,12 +29242,13 @@ declare class EchartsLayer extends BaseLayer {
|
|
|
28949
29242
|
* @param [options.style.type] - 渲染类型,支持:"image":ImageLayer图片展示, "graphic":普通RectanglePrimitive矢量矩形展示, "arc":曲面RectanglePrimitive矢量矩形展示
|
|
28950
29243
|
* @param [options.style.opacity = 1] - 透明度
|
|
28951
29244
|
* @param [options.style.height = 0] - 高度,相对于椭球面的高度。
|
|
29245
|
+
* @param [options.style.clampToGround = false] - 是否贴地
|
|
29246
|
+
* @param [options.style.多个参数] - rectangle矩形支持的样式, tip: 是指支持多个其他参数
|
|
28952
29247
|
* @param [options.style.arc = false] - 是否显示曲面热力图,同 type:"arc"
|
|
28953
29248
|
* @param [options.style.arcRadiusScale = 1.5] - 曲面热力图时,radius扩大比例
|
|
28954
29249
|
* @param [options.style.arcBlurScale = 1.5] - 曲面热力图时,blur扩大比例
|
|
28955
29250
|
* @param [options.style.arcDirection = 1] - 曲面热力图时,凹陷的方向,1向上,-1向下,0双面
|
|
28956
29251
|
* @param [options.style.diffHeight] - 曲面热力图时,曲面的起伏差值高,默认根据数据范围的比例自动计算。
|
|
28957
|
-
* @param [options.style.多个参数] - rectangle矩形支持的样式
|
|
28958
29252
|
* @param [options.maxCanvasSize = 5000] - Canvas最大尺寸(单位:像素),调大精度更高,但过大容易内存溢出
|
|
28959
29253
|
* @param [options.minCanvasSize = 700] - Canvas最小尺寸(单位:像素)
|
|
28960
29254
|
* @param [options.delayTime = 2] - 显示数据时的过渡动画时长(单位:秒)
|
|
@@ -28991,16 +29285,17 @@ declare class HeatLayer extends BaseLayer {
|
|
|
28991
29285
|
radius?: number;
|
|
28992
29286
|
gradient?: any;
|
|
28993
29287
|
};
|
|
28994
|
-
style?: {
|
|
29288
|
+
style?: any | {
|
|
28995
29289
|
type?: string;
|
|
28996
29290
|
opacity?: number;
|
|
28997
29291
|
height?: number;
|
|
29292
|
+
clampToGround?: boolean;
|
|
29293
|
+
多个参数?: any;
|
|
28998
29294
|
arc?: boolean;
|
|
28999
29295
|
arcRadiusScale?: number;
|
|
29000
29296
|
arcBlurScale?: number;
|
|
29001
29297
|
arcDirection?: number;
|
|
29002
29298
|
diffHeight?: number;
|
|
29003
|
-
多个参数?: RectanglePrimitive.StyleOptions | any;
|
|
29004
29299
|
};
|
|
29005
29300
|
maxCanvasSize?: number;
|
|
29006
29301
|
minCanvasSize?: number;
|
|
@@ -29413,31 +29708,6 @@ declare class Tle {
|
|
|
29413
29708
|
* @returns ECI(地心惯性坐标系)坐标
|
|
29414
29709
|
*/
|
|
29415
29710
|
static ecfToEci(positionEcf: Cesium.Cartesian3, datetime: Date | Cesium.JulianDate | number): Cesium.Cartesian3;
|
|
29416
|
-
/**
|
|
29417
|
-
* 开普勒六根数 转换到 两行轨道根数 【测试算法,待验证优化】
|
|
29418
|
-
* @param options - 参数:
|
|
29419
|
-
* @param options.name - 卫星两位数编号,如01,最多五位数
|
|
29420
|
-
* @param options.epochYear - 发射年份(最后两位数字),比如2017年时传入17
|
|
29421
|
-
* @param options.epochDay - 开始时间,每年1月1日0点为0,后逐渐累积,整数部分为日,小数部分为时分秒
|
|
29422
|
-
* @param options.inclination - 轨道的交角,倾角,单位:度
|
|
29423
|
-
* @param options.rightAscension - 升交点赤经,单位:度
|
|
29424
|
-
* @param options.eccentricity - 轨道偏心率
|
|
29425
|
-
* @param options.perigee - 近地点角矩(deg)
|
|
29426
|
-
* @param options.meanAnomaly - 平近点角,单位:度
|
|
29427
|
-
* @param options.meanMotion - 每天绕地球公转圈数(平均运动)
|
|
29428
|
-
* @returns 两行轨道根数
|
|
29429
|
-
*/
|
|
29430
|
-
static coe2tle(options: {
|
|
29431
|
-
name: string;
|
|
29432
|
-
epochYear: number;
|
|
29433
|
-
epochDay: number;
|
|
29434
|
-
inclination: number;
|
|
29435
|
-
rightAscension: number;
|
|
29436
|
-
eccentricity: number;
|
|
29437
|
-
perigee: number;
|
|
29438
|
-
meanAnomaly: number;
|
|
29439
|
-
meanMotion: number;
|
|
29440
|
-
}): string[];
|
|
29441
29711
|
/**
|
|
29442
29712
|
* 两行轨道根数 转换到 开普勒六根数
|
|
29443
29713
|
* @param tle1 - 两行轨道根数1
|
|
@@ -29954,6 +30224,13 @@ declare namespace Satellite {
|
|
|
29954
30224
|
* @param [options.cone] - 设置是否显示 卫星视锥体 和对应的样式
|
|
29955
30225
|
* @param [options.path] - 设置是否显示 卫星轨迹路线 和对应的样式,属性还包含:<br />
|
|
29956
30226
|
* // * @param {boolean} [options.path.closure=false] 是否闭合轨道圆
|
|
30227
|
+
* @param [highlight] - 鼠标移入或单击(type:'click')后的对应高亮的部分样式,创建Graphic后也可以openHighlight、closeHighlight方法来手动调用
|
|
30228
|
+
* @param [highlight.model] - 设置是否显示 gltf卫星模型 和对应的样式
|
|
30229
|
+
* @param [highlight.label] - 设置是否显示 文本 和对应的样式
|
|
30230
|
+
* @param [highlight.billboard] - 设置是否显示 图标点 和对应的样式
|
|
30231
|
+
* @param [highlight.point] - 设置是否显示 像素点 和对应的样式
|
|
30232
|
+
* @param [highlight.cone] - 设置是否显示 卫星视锥体 和对应的样式
|
|
30233
|
+
* @param [highlight.path] - 设置是否显示 卫星轨迹路线 和对应的样式
|
|
29957
30234
|
* @param [options.frameRate = 1] - 多少帧获取一次数据。用于控制效率,如果卡顿就把该数值调大一些。
|
|
29958
30235
|
* @param [options.id = createGuid()] - 矢量数据id标识
|
|
29959
30236
|
* @param [options.name = ''] - 矢量数据名称
|
|
@@ -29978,6 +30255,13 @@ declare class Satellite extends Route {
|
|
|
29978
30255
|
id?: string | number;
|
|
29979
30256
|
name?: string;
|
|
29980
30257
|
show?: boolean;
|
|
30258
|
+
}, highlight?: {
|
|
30259
|
+
model?: ModelEntity.StyleOptions | any;
|
|
30260
|
+
label?: LabelEntity.StyleOptions | any;
|
|
30261
|
+
billboard?: BillboardEntity.StyleOptions | any;
|
|
30262
|
+
point?: PointEntity.StyleOptions | any;
|
|
30263
|
+
cone?: SatelliteSensor.StyleOptions | any | any;
|
|
30264
|
+
path?: PolylineEntity.StyleOptions | any;
|
|
29981
30265
|
});
|
|
29982
30266
|
/**
|
|
29983
30267
|
* 卫星TLE算法类对象
|
|
@@ -31946,8 +32230,8 @@ declare namespace Measure {
|
|
|
31946
32230
|
* @property change - 测量值变化了
|
|
31947
32231
|
* @property start - 异步测量中,开始测量
|
|
31948
32232
|
* @property end - 异步测量中,完成了测量后
|
|
31949
|
-
* @property
|
|
31950
|
-
* @property
|
|
32233
|
+
* @property addGraphic - 添加了矢量对象
|
|
32234
|
+
* @property removeGraphic - 移除了矢量对象
|
|
31951
32235
|
* @property show - 显示了对象
|
|
31952
32236
|
* @property hide - 隐藏了对象
|
|
31953
32237
|
* @property click - 左键单击 鼠标事件
|
|
@@ -31978,8 +32262,8 @@ declare namespace Measure {
|
|
|
31978
32262
|
change: string;
|
|
31979
32263
|
start: string;
|
|
31980
32264
|
end: string;
|
|
31981
|
-
|
|
31982
|
-
|
|
32265
|
+
addGraphic: string;
|
|
32266
|
+
removeGraphic: string;
|
|
31983
32267
|
show: string;
|
|
31984
32268
|
hide: string;
|
|
31985
32269
|
click: string;
|
|
@@ -32976,6 +33260,14 @@ declare class ContourLine extends TerrainEditBase {
|
|
|
32976
33260
|
* 等高线 颜色
|
|
32977
33261
|
*/
|
|
32978
33262
|
color: Cesium.Color | string;
|
|
33263
|
+
/**
|
|
33264
|
+
* 地表渲染配色方案中的 最低海拔高度
|
|
33265
|
+
*/
|
|
33266
|
+
minHeight: number;
|
|
33267
|
+
/**
|
|
33268
|
+
* 地表渲染配色方案中的 最高海拔高度
|
|
33269
|
+
*/
|
|
33270
|
+
maxHeight: number;
|
|
32979
33271
|
/**
|
|
32980
33272
|
* 是否显示区域外的地图
|
|
32981
33273
|
*/
|
|
@@ -33546,7 +33838,7 @@ declare class TerrainUplift extends TerrainEditBase {
|
|
|
33546
33838
|
* @param [options.positions] - 限高区域坐标数组
|
|
33547
33839
|
* @param [options.height] - 限高高度(单位米),相对于bottomHeight模型地面的海拔高度的相对高度。
|
|
33548
33840
|
* @param [options.bottomHeight] - 模型地面的海拔高度(单位米)
|
|
33549
|
-
* @param [options.color = "#
|
|
33841
|
+
* @param [options.color = "#ffffff"] - 颜色
|
|
33550
33842
|
* @param [options.id = createGuid()] - 对象的id标识
|
|
33551
33843
|
* @param [options.enabled = true] - 对象的启用状态
|
|
33552
33844
|
* @param [options.eventParent] - 指定的事件冒泡对象,默认为所加入的map对象,false时不冒泡事件
|
|
@@ -35623,6 +35915,14 @@ declare namespace PointUtil {
|
|
|
35623
35915
|
* @returns 反射向量
|
|
35624
35916
|
*/
|
|
35625
35917
|
function getReflectVector(view: Cesium.Cartesian3, normal: Cesium.Cartesian3): Cesium.Cartesian3;
|
|
35918
|
+
/**
|
|
35919
|
+
* 获取属性坐标对应时间的index和坐标值
|
|
35920
|
+
* @param property - 属性坐标
|
|
35921
|
+
* @param time - 指定时间
|
|
35922
|
+
* @param [result] - 坐标对象
|
|
35923
|
+
* @returns 返回index和坐标值 , 示例:{ position: xx, index:xx }
|
|
35924
|
+
*/
|
|
35925
|
+
function getPropertyIndex(property: Cesium.SampledPositionProperty, time: Cesium.JulianDate, result?: Cesium.Cartesian3): any;
|
|
35626
35926
|
}
|
|
35627
35927
|
|
|
35628
35928
|
/**
|
|
@@ -36296,6 +36596,31 @@ declare namespace Util {
|
|
|
36296
36596
|
opacity?: number;
|
|
36297
36597
|
randomColor?: boolean;
|
|
36298
36598
|
}, defval?: Cesium.Color): Cesium.Color;
|
|
36599
|
+
/**
|
|
36600
|
+
* 获取JulianDate时间
|
|
36601
|
+
* @param currTime - 指定时间。当为String时,可以传入 '2021-01-01 12:13:00';
|
|
36602
|
+
* @returns JulianDate时间
|
|
36603
|
+
*/
|
|
36604
|
+
function getJulianDate(currTime: Cesium.JulianDate | Date | string): Cesium.JulianDate;
|
|
36605
|
+
/**
|
|
36606
|
+
* 指定时间范围内显示对象所用到的TimeIntervalCollection对象
|
|
36607
|
+
* @example
|
|
36608
|
+
* graphic.availability = mars3d.Util.getAvailability([
|
|
36609
|
+
* { start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false },
|
|
36610
|
+
* { start: "2017-08-25 09:00:00", stop: "2017-08-25 09:02:30" }
|
|
36611
|
+
* ])
|
|
36612
|
+
*
|
|
36613
|
+
* graphic.availability = mars3d.Util.getAvailability({ start: "2017-08-25 08:00:00", stop: "2017-08-25 08:01:20", isStartIncluded: true, isStopIncluded: false })
|
|
36614
|
+
* @param availability - 指定时间范围
|
|
36615
|
+
* @returns JulianDate时间
|
|
36616
|
+
*/
|
|
36617
|
+
function getAvailability(availability: Cesium.TimeIntervalCollection | Cesium.TimeInterval | any[] | any): Cesium.TimeIntervalCollection;
|
|
36618
|
+
/**
|
|
36619
|
+
* 获取时间范围的简单对象数组,用于对象的编辑
|
|
36620
|
+
* @param availability - 指定时间范围
|
|
36621
|
+
* @returns JulianDate时间
|
|
36622
|
+
*/
|
|
36623
|
+
function getAvailabilityJson(availability: Cesium.TimeIntervalCollection): any;
|
|
36299
36624
|
/**
|
|
36300
36625
|
* 取属性值,简化Cesium内的属性,去掉getValue等,取最简的键值对。
|
|
36301
36626
|
* 方便popup、tooltip等构造方法使用
|
|
@@ -36956,6 +37281,7 @@ declare namespace layer {
|
|
|
36956
37281
|
declare namespace query {
|
|
36957
37282
|
export { BaiduPOI }
|
|
36958
37283
|
export { GaodePOI }
|
|
37284
|
+
export { TdtPOI }
|
|
36959
37285
|
export { GaodeRoute }
|
|
36960
37286
|
export { QueryGeoServer }
|
|
36961
37287
|
export { QueryArcServer }
|