mars3d 3.4.6 → 3.4.8
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/README.md +0 -10
- package/dist/mars3d.css +2 -2
- package/dist/mars3d.d.ts +148 -53
- package/dist/mars3d.js +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -72,16 +72,6 @@ Github:[https://github.com/marsgis/mars3d](https://github.com/marsgis/mars3d)
|
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
## 第3方平台融合
|
|
77
|
-
Mars3D支持结合Cesium相关的各类平台来兼容使用,方便结合不同平台的优点来达到完成各种项目需求。
|
|
78
|
-
|
|
79
|
-
|说明 | Github | 国内Gitee |
|
|
80
|
-
|----|---- | ----|
|
|
81
|
-
|与supermap平台融合示例 | [mars3d-link-supermap](https://github.com/marsgis/mars3d-link-supermap) |[mars3d-link-supermap](https://gitee.com/marsgis/mars3d-link-supermap) |
|
|
82
|
-
|与earthsdk平台融合示例 | [mars3d-link-earthsdk](https://github.com/marsgis/mars3d-link-earthsdk) |[mars3d-link-earthsdk](https://gitee.com/marsgis/mars3d-link-earthsdk) |
|
|
83
|
-
|
|
84
|
-
|
|
85
75
|
|
|
86
76
|
## 其他
|
|
87
77
|
|
package/dist/mars3d.css
CHANGED
package/dist/mars3d.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Mars3D三维可视化平台 mars3d
|
|
4
4
|
*
|
|
5
|
-
* 版本信息:v3.4.
|
|
6
|
-
* 编译日期:2022-
|
|
5
|
+
* 版本信息:v3.4.8
|
|
6
|
+
* 编译日期:2022-09-26 08:51:42
|
|
7
7
|
* 版权所有:Copyright by 火星科技 http://mars3d.cn
|
|
8
8
|
* 使用单位:免费公开版 ,2022-06-01
|
|
9
9
|
*/
|
|
@@ -1163,6 +1163,7 @@ declare namespace MaterialType {
|
|
|
1163
1163
|
* @property [repeat = new Cesium.Cartesian2(1.0, 1.0)] - 横纵方向重复次数
|
|
1164
1164
|
* @property [speed = 10] - 速度,值越大越快
|
|
1165
1165
|
* @property [axisY = false] - 是否Y轴朝上
|
|
1166
|
+
* @property [mixt = false] - 默认为color颜色,true时color颜色与图片颜色混合
|
|
1166
1167
|
* @property [hasImage2 = false] - 是否有2张图片的混合模式
|
|
1167
1168
|
* @property [image2 = Cesium.Material.DefaultImageId] - 第2张背景图片URL地址
|
|
1168
1169
|
* @property [color2 = new Cesium.Color(1, 1, 1)] - 第2张背景图片颜色
|
|
@@ -2141,10 +2142,6 @@ declare class Timeline extends BaseControl {
|
|
|
2141
2142
|
* @param stopTime - 结束时间
|
|
2142
2143
|
*/
|
|
2143
2144
|
zoomTo(startTime: Cesium.JulianDate, stopTime: Cesium.JulianDate): void;
|
|
2144
|
-
/**
|
|
2145
|
-
* 父容器DOM对象
|
|
2146
|
-
*/
|
|
2147
|
-
readonly parentContainer: HTMLElement;
|
|
2148
2145
|
}
|
|
2149
2146
|
|
|
2150
2147
|
declare namespace ToolButton {
|
|
@@ -3751,9 +3748,9 @@ declare class BaseGraphic extends BaseClass {
|
|
|
3751
3748
|
/**
|
|
3752
3749
|
* 是否有绑定的右键菜单
|
|
3753
3750
|
* @param [hasLayer = true] - 是否判断图层上的右键菜单
|
|
3754
|
-
* @returns
|
|
3751
|
+
* @returns 是否有绑定
|
|
3755
3752
|
*/
|
|
3756
|
-
hasContextMenu(hasLayer?: boolean):
|
|
3753
|
+
hasContextMenu(hasLayer?: boolean): boolean;
|
|
3757
3754
|
/**
|
|
3758
3755
|
* 获取绑定的右键菜单数组
|
|
3759
3756
|
* @param [hasLayer = true] - 是获取图层上的右键菜单
|
|
@@ -6108,6 +6105,10 @@ declare class DivBoderLabel extends DivGraphic {
|
|
|
6108
6105
|
show?: boolean;
|
|
6109
6106
|
eventParent?: BaseClass | boolean;
|
|
6110
6107
|
});
|
|
6108
|
+
/**
|
|
6109
|
+
* 设置或获取当前对象对应的Html
|
|
6110
|
+
*/
|
|
6111
|
+
html: string | HTMLDivElement;
|
|
6111
6112
|
}
|
|
6112
6113
|
|
|
6113
6114
|
declare namespace DivGraphic {
|
|
@@ -6466,6 +6467,10 @@ declare class DivLightPoint extends DivGraphic {
|
|
|
6466
6467
|
show?: boolean;
|
|
6467
6468
|
eventParent?: BaseClass | boolean;
|
|
6468
6469
|
});
|
|
6470
|
+
/**
|
|
6471
|
+
* 设置或获取当前对象对应的Html
|
|
6472
|
+
*/
|
|
6473
|
+
html: string | HTMLDivElement;
|
|
6469
6474
|
}
|
|
6470
6475
|
|
|
6471
6476
|
declare namespace DivUpLabel {
|
|
@@ -6569,6 +6574,10 @@ declare class DivUpLabel extends DivGraphic {
|
|
|
6569
6574
|
show?: boolean;
|
|
6570
6575
|
eventParent?: BaseClass | boolean;
|
|
6571
6576
|
});
|
|
6577
|
+
/**
|
|
6578
|
+
* 设置或获取当前对象对应的Html
|
|
6579
|
+
*/
|
|
6580
|
+
html: string | HTMLDivElement;
|
|
6572
6581
|
}
|
|
6573
6582
|
|
|
6574
6583
|
/**
|
|
@@ -6630,6 +6639,7 @@ declare namespace Popup {
|
|
|
6630
6639
|
* @property [zIndex = "10000000"] - 指定固定的zIndex层级属性(当hasZIndex为true时无效)
|
|
6631
6640
|
* @property [depthTest = true] - 是否打开深度判断(true时判断是否在球背面)
|
|
6632
6641
|
* @property [hasCache = true] - 是否启用缓存机制,如为true,在视角未变化时不重新渲染。
|
|
6642
|
+
* @property [checkData] - 在多个Popup时,校验是否相同Popup进行判断关闭
|
|
6633
6643
|
*/
|
|
6634
6644
|
type StyleOptions = any | {
|
|
6635
6645
|
html?: string;
|
|
@@ -6663,6 +6673,7 @@ declare namespace Popup {
|
|
|
6663
6673
|
zIndex?: number | string;
|
|
6664
6674
|
depthTest?: boolean;
|
|
6665
6675
|
hasCache?: boolean;
|
|
6676
|
+
checkData?: (...params: any[]) => any;
|
|
6666
6677
|
};
|
|
6667
6678
|
}
|
|
6668
6679
|
|
|
@@ -7112,10 +7123,10 @@ declare class BasePointEntity extends BaseEntity {
|
|
|
7112
7123
|
getCoordinate(noAlt: boolean): any[];
|
|
7113
7124
|
/**
|
|
7114
7125
|
* 按Cesium.CallbackProperty的方式 更新坐标(更加平滑)
|
|
7115
|
-
* @param position - 坐标
|
|
7126
|
+
* @param [position] - 坐标
|
|
7116
7127
|
* @returns 当前坐标
|
|
7117
7128
|
*/
|
|
7118
|
-
setCallbackPosition(position
|
|
7129
|
+
setCallbackPosition(position?: string | any[] | any | Cesium.Cartesian3 | any): Cesium.Cartesian3;
|
|
7119
7130
|
/**
|
|
7120
7131
|
* 显示隐藏状态
|
|
7121
7132
|
*/
|
|
@@ -7255,10 +7266,10 @@ declare class BasePolyEntity extends BaseEntity {
|
|
|
7255
7266
|
}): Promise<any>;
|
|
7256
7267
|
/**
|
|
7257
7268
|
* 按Cesium.CallbackProperty的方式 更新坐标集合(更加平滑)
|
|
7258
|
-
* @param positions - 坐标数组
|
|
7269
|
+
* @param [positions] - 坐标数组
|
|
7259
7270
|
* @returns 当前坐标集合
|
|
7260
7271
|
*/
|
|
7261
|
-
setCallbackPositions(positions
|
|
7272
|
+
setCallbackPositions(positions?: string[] | any[][] | LngLatPoint[]): Cesium.Cartesian3[];
|
|
7262
7273
|
}
|
|
7263
7274
|
|
|
7264
7275
|
declare namespace BillboardEntity {
|
|
@@ -9288,10 +9299,10 @@ declare namespace ModelEntity {
|
|
|
9288
9299
|
* gltf小模型 支持的样式信息
|
|
9289
9300
|
* @property [url] - glTF模型的URI的字符串或资源属性。
|
|
9290
9301
|
* @property [scale = 1] - 比例
|
|
9291
|
-
* @property [heading = 0] - 方向角 (度数值,0-360
|
|
9292
|
-
* @property [pitch = 0] - 俯仰角(度数值,0-360
|
|
9293
|
-
* @property [roll = 0] - 翻滚角(度数值,0-360
|
|
9294
|
-
* @property [
|
|
9302
|
+
* @property [heading = 0] - 方向角 (度数值,0-360度),优先级高于orientation
|
|
9303
|
+
* @property [pitch = 0] - 俯仰角(度数值,0-360度),优先级高于orientation
|
|
9304
|
+
* @property [roll = 0] - 翻滚角(度数值,0-360度),优先级高于orientation
|
|
9305
|
+
* @property [mergeOrientation = false] - 当存在orientation时(如addDynamicPosition等),设置为true时,是在orientation基础的方式值上加上设置是heading、pitch、roll值,比如用于设置模型不是标准的方向时的纠偏处理
|
|
9295
9306
|
* @property [radius] - 编辑时,半径圆圈的半径,默认自动
|
|
9296
9307
|
* @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
|
|
9297
9308
|
* @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
|
|
@@ -9331,7 +9342,7 @@ declare namespace ModelEntity {
|
|
|
9331
9342
|
heading?: number;
|
|
9332
9343
|
pitch?: number;
|
|
9333
9344
|
roll?: number;
|
|
9334
|
-
|
|
9345
|
+
mergeOrientation?: boolean;
|
|
9335
9346
|
radius?: number;
|
|
9336
9347
|
minimumPixelSize?: number;
|
|
9337
9348
|
maximumScale?: number;
|
|
@@ -9384,7 +9395,6 @@ declare namespace ModelEntity {
|
|
|
9384
9395
|
* @param [options.parent] - 要与此实体关联的父实体。
|
|
9385
9396
|
* @param [options.onBeforeCreate] - 在 new Cesium.Entity(addattr) 前的回调方法,可以对addattr做额外个性化处理。
|
|
9386
9397
|
* @param [options.maxCacheCount = 50] - 当使用addDynamicPosition设置为动画轨迹位置时,保留的坐标点数量
|
|
9387
|
-
* @param [options.fixedHeading] - 当使用addDynamicPosition设置为动画轨迹位置时,是否使用固定的heading角度,而不用路线的自动方向角度。
|
|
9388
9398
|
* @param [options.forwardExtrapolationType = Cesium.ExtrapolationType.HOLD] - 当使用addDynamicPosition设置为动画轨迹位置时,在任何可用坐标之后一次请求值时要执行的推断类型,默认为最后一个坐标位置。
|
|
9389
9399
|
* @param [options.backwardExtrapolationType = Cesium.ExtrapolationType.HOLD] - 当使用addDynamicPosition设置为动画轨迹位置时, 在任何可用坐标之前一次请求值时要执行的推断类型,默认为第一个坐标位置。
|
|
9390
9400
|
* @param [options.clampToTileset] - 当使用addDynamicPosition设置为动画轨迹位置时,是否进行贴模型。
|
|
@@ -9424,7 +9434,6 @@ declare class ModelEntity extends BasePointEntity {
|
|
|
9424
9434
|
parent?: Cesium.Entity;
|
|
9425
9435
|
onBeforeCreate?: (...params: any[]) => any;
|
|
9426
9436
|
maxCacheCount?: number;
|
|
9427
|
-
fixedHeading?: boolean;
|
|
9428
9437
|
forwardExtrapolationType?: Cesium.ExtrapolationType;
|
|
9429
9438
|
backwardExtrapolationType?: Cesium.ExtrapolationType;
|
|
9430
9439
|
clampToTileset?: boolean;
|
|
@@ -9464,6 +9473,14 @@ declare class ModelEntity extends BasePointEntity {
|
|
|
9464
9473
|
* 模型整体的缩放比例
|
|
9465
9474
|
*/
|
|
9466
9475
|
scale: number;
|
|
9476
|
+
/**
|
|
9477
|
+
* 获取模型完成解析加载完成的Promise承诺, 等价于load事件(区别在于load事件必须在load完成前绑定才能监听)。
|
|
9478
|
+
* @example
|
|
9479
|
+
* model.readyPromise.then(function(layer) {
|
|
9480
|
+
* console.log("load完成", layer)
|
|
9481
|
+
* })
|
|
9482
|
+
*/
|
|
9483
|
+
readonly readyPromise: Promise<ModelEntity | any>;
|
|
9467
9484
|
/**
|
|
9468
9485
|
* 获取模型的当前时间的实际hpr角度(如动态模型)
|
|
9469
9486
|
* @returns Heading Pitch Roll方向
|
|
@@ -9999,6 +10016,7 @@ declare namespace PolygonEntity {
|
|
|
9999
10016
|
* @property [outlineColor = "#ffffff"] - 边框颜色
|
|
10000
10017
|
* @property [outlineOpacity = 0.6] - 边框透明度
|
|
10001
10018
|
* @property [outlineStyle] - 边框的完整自定义样式,会覆盖outlineWidth、outlineColor等参数。
|
|
10019
|
+
* // * @property {Boolean} [outlineStyle.closure = true] 边线是否闭合
|
|
10002
10020
|
* @property [distanceDisplayCondition = false] - 是否按视距显示 或 指定此框将显示在与摄像机的多大距离。
|
|
10003
10021
|
* @property [distanceDisplayCondition_far = 100000] - 最大距离
|
|
10004
10022
|
* @property [distanceDisplayCondition_near = 0] - 最小距离
|
|
@@ -10173,10 +10191,10 @@ declare class PolygonEntity extends BasePolyEntity {
|
|
|
10173
10191
|
readonly center: Cesium.Cartesian3;
|
|
10174
10192
|
/**
|
|
10175
10193
|
* 按Cesium.CallbackProperty的方式 更新坐标集合(更加平滑)
|
|
10176
|
-
* @param positions - 坐标数组
|
|
10194
|
+
* @param [positions] - 坐标数组
|
|
10177
10195
|
* @returns 当前坐标集合
|
|
10178
10196
|
*/
|
|
10179
|
-
setCallbackPositions(positions
|
|
10197
|
+
setCallbackPositions(positions?: string[] | any[][] | LngLatPoint[]): Cesium.Cartesian3[];
|
|
10180
10198
|
}
|
|
10181
10199
|
|
|
10182
10200
|
declare namespace PolylineEntity {
|
|
@@ -11726,6 +11744,7 @@ declare class Regular extends PolygonEntity {
|
|
|
11726
11744
|
* @param options.style.radius - 扇形区域的半径(单位:米)
|
|
11727
11745
|
* @param options.style.startAngle - 扇形区域的开始角度(正东方向为0,顺时针到360度)
|
|
11728
11746
|
* @param options.style.endAngle - 扇形区域的结束角度(正东方向为0,顺时针到360度)
|
|
11747
|
+
* @param [options.style.noCenter] - 不连中心点
|
|
11729
11748
|
* @param [options.attr] - 附件的属性信息,可以任意附加属性,导出geojson或json时会自动处理导出。
|
|
11730
11749
|
* @param [options.availability] - 与该对象关联的可用性(如果有的话)。
|
|
11731
11750
|
* @param [options.description] - 指定此实体的HTML描述的字符串属性(infoBox中展示)。
|
|
@@ -11751,6 +11770,7 @@ declare class Sector extends PolygonEntity {
|
|
|
11751
11770
|
radius: number;
|
|
11752
11771
|
startAngle: number;
|
|
11753
11772
|
endAngle: number;
|
|
11773
|
+
noCenter?: boolean;
|
|
11754
11774
|
};
|
|
11755
11775
|
attr?: any;
|
|
11756
11776
|
availability?: Cesium.TimeIntervalCollection;
|
|
@@ -11781,12 +11801,14 @@ declare class Sector extends PolygonEntity {
|
|
|
11781
11801
|
* @param options.radius - 扇形区域的半径(单位:米)
|
|
11782
11802
|
* @param options.startAngle - 扇形区域的开始角度(正东方向为0,顺时针到360度)
|
|
11783
11803
|
* @param options.endAngle - 扇形区域的结束角度(正东方向为0,顺时针到360度)
|
|
11804
|
+
* @param [options.noCenter] - 不连中心点
|
|
11784
11805
|
* @returns 边界坐标点
|
|
11785
11806
|
*/
|
|
11786
11807
|
static getOutlinePositions(center: Cesium.Cartesian3, options: {
|
|
11787
11808
|
radius: number;
|
|
11788
11809
|
startAngle: number;
|
|
11789
11810
|
endAngle: number;
|
|
11811
|
+
noCenter?: boolean;
|
|
11790
11812
|
}): Cesium.Cartesian3[];
|
|
11791
11813
|
/**
|
|
11792
11814
|
* 位置坐标数组 (笛卡尔坐标), 赋值时可以传入LatLngPoint数组对象 或 Cesium.PolygonHierarchy
|
|
@@ -14512,10 +14534,10 @@ declare namespace ModelPrimitive {
|
|
|
14512
14534
|
* @property [scaleX = 1] - X轴方向缩放比例
|
|
14513
14535
|
* @property [scaleY = 1] - Y轴方向缩放比例
|
|
14514
14536
|
* @property [scaleZ = 1] - Z轴方向缩放比例
|
|
14515
|
-
* @property [heading = 0] - 方向角 (度数值,0-360
|
|
14516
|
-
* @property [pitch = 0] - 俯仰角(度数值,0-360
|
|
14517
|
-
* @property [roll = 0] - 翻滚角(度数值,0-360
|
|
14518
|
-
* @property [
|
|
14537
|
+
* @property [heading = 0] - 方向角 (度数值,0-360度),优先级高于orientation
|
|
14538
|
+
* @property [pitch = 0] - 俯仰角(度数值,0-360度),优先级高于orientation
|
|
14539
|
+
* @property [roll = 0] - 翻滚角(度数值,0-360度),优先级高于orientation
|
|
14540
|
+
* @property [mergeOrientation = false] - 当存在orientation时(如addDynamicPosition等),设置为true时,可以在orientation基础的方式值上叠加设置是heading、pitch、roll值,比如用于设置模型不是标准的方向时的处理
|
|
14519
14541
|
* @property [minimumPixelSize = 0.0] - 指定模型的近似最小像素大小,而不考虑缩放。
|
|
14520
14542
|
* @property [maximumScale] - 模型的最大比例尺寸。minimumPixelSize的上限。
|
|
14521
14543
|
* @property [fill = false] - 是否填充,指定与模型渲染颜色混合
|
|
@@ -14573,7 +14595,7 @@ declare namespace ModelPrimitive {
|
|
|
14573
14595
|
heading?: number;
|
|
14574
14596
|
pitch?: number;
|
|
14575
14597
|
roll?: number;
|
|
14576
|
-
|
|
14598
|
+
mergeOrientation?: boolean;
|
|
14577
14599
|
minimumPixelSize?: number;
|
|
14578
14600
|
maximumScale?: number;
|
|
14579
14601
|
fill?: boolean;
|
|
@@ -14638,7 +14660,6 @@ declare namespace ModelPrimitive {
|
|
|
14638
14660
|
* @param [options.appearance] - [cesium原生]用于渲染图元的外观。
|
|
14639
14661
|
* @param [options.attributes] - [cesium原生]每个实例的属性。
|
|
14640
14662
|
* @param [options.maxCacheCount = 50] - 当使用addDynamicPosition设置为动画轨迹位置时,保留的坐标点数量
|
|
14641
|
-
* @param [options.fixedHeading] - 当使用addDynamicPosition设置为动画轨迹位置时,是否使用固定的heading角度,而不用路线的自动方向角度。
|
|
14642
14663
|
* @param [options.forwardExtrapolationType = Cesium.ExtrapolationType.HOLD] - 当使用addDynamicPosition设置为动画轨迹位置时,在任何可用坐标之后一次请求值时要执行的推断类型,默认为最后一个坐标位置。
|
|
14643
14664
|
* @param [options.backwardExtrapolationType = Cesium.ExtrapolationType.HOLD] - 当使用addDynamicPosition设置为动画轨迹位置时, 在任何可用坐标之前一次请求值时要执行的推断类型,默认为第一个坐标位置。
|
|
14644
14665
|
* @param [options.clampToTileset] - 当使用addDynamicPosition设置为动画轨迹位置时,是否进行贴模型。
|
|
@@ -14666,7 +14687,6 @@ declare class ModelPrimitive extends BasePointPrimitive {
|
|
|
14666
14687
|
appearance?: Cesium.Appearance;
|
|
14667
14688
|
attributes?: Cesium.Appearance;
|
|
14668
14689
|
maxCacheCount?: number;
|
|
14669
|
-
fixedHeading?: boolean;
|
|
14670
14690
|
forwardExtrapolationType?: Cesium.ExtrapolationType;
|
|
14671
14691
|
backwardExtrapolationType?: Cesium.ExtrapolationType;
|
|
14672
14692
|
clampToTileset?: boolean;
|
|
@@ -16168,9 +16188,9 @@ declare class BaseGraphicLayer extends BaseLayer {
|
|
|
16168
16188
|
closeTooltip(): BaseGraphicLayer;
|
|
16169
16189
|
/**
|
|
16170
16190
|
* 是否有绑定的右键菜单
|
|
16171
|
-
* @returns
|
|
16191
|
+
* @returns 是否有绑定
|
|
16172
16192
|
*/
|
|
16173
|
-
hasContextMenu():
|
|
16193
|
+
hasContextMenu(): boolean;
|
|
16174
16194
|
/**
|
|
16175
16195
|
* 获取绑定的右键菜单数组
|
|
16176
16196
|
* @returns 右键菜单数组
|
|
@@ -16947,6 +16967,7 @@ declare class KmlLayer extends CzmGeoJsonLayer {
|
|
|
16947
16967
|
* @param [options.clustering.enabled = false] - 是否开启聚合
|
|
16948
16968
|
* @param [options.clustering.pixelRange = 20] - 多少像素矩形范围内聚合
|
|
16949
16969
|
* @param [options.clustering.clampToGround = true] - 是否贴地
|
|
16970
|
+
* @param [options.clustering.style] - 聚合点的样式参数
|
|
16950
16971
|
* @param [options.clustering.radius = 28] - 圆形图标的整体半径大小(单位:像素)
|
|
16951
16972
|
* @param [options.clustering.radiusIn = radius-5] - 圆形图标的内圆半径大小(单位:像素)
|
|
16952
16973
|
* @param [options.clustering.fontColor = '#ffffff'] - 数字的颜色
|
|
@@ -17019,6 +17040,7 @@ declare class ArcGisWfsLayer extends LodGraphicLayer {
|
|
|
17019
17040
|
enabled?: boolean;
|
|
17020
17041
|
pixelRange?: number;
|
|
17021
17042
|
clampToGround?: boolean;
|
|
17043
|
+
style?: BillboardEntity.StyleOptions | any;
|
|
17022
17044
|
radius?: number;
|
|
17023
17045
|
radiusIn?: number;
|
|
17024
17046
|
fontColor?: string;
|
|
@@ -17218,6 +17240,7 @@ declare class ArcGisWfsSingleLayer extends GeoJsonLayer {
|
|
|
17218
17240
|
* @param [options.clustering.enabled = false] - 是否开启聚合
|
|
17219
17241
|
* @param [options.clustering.pixelRange = 20] - 多少像素矩形范围内聚合
|
|
17220
17242
|
* @param [options.clustering.clampToGround = true] - 是否贴地
|
|
17243
|
+
* @param [options.clustering.style] - 聚合点的样式参数
|
|
17221
17244
|
* @param [options.clustering.radius = 26] - 内置样式时,圆形图标的半径大小(单位:像素)
|
|
17222
17245
|
* @param [options.clustering.fontColor = '#ffffff'] - 内置样式时,数字的颜色
|
|
17223
17246
|
* @param [options.clustering.color = 'rgba(181, 226, 140, 0.6)'] - 内置样式时,圆形图标的背景颜色
|
|
@@ -17288,6 +17311,7 @@ declare class BusineDataLayer extends GraphicLayer {
|
|
|
17288
17311
|
enabled?: boolean;
|
|
17289
17312
|
pixelRange?: number;
|
|
17290
17313
|
clampToGround?: boolean;
|
|
17314
|
+
style?: BillboardEntity.StyleOptions | any;
|
|
17291
17315
|
radius?: number;
|
|
17292
17316
|
fontColor?: string;
|
|
17293
17317
|
color?: string;
|
|
@@ -17374,6 +17398,7 @@ declare class BusineDataLayer extends GraphicLayer {
|
|
|
17374
17398
|
* @param [options.clustering.enabled = false] - 是否开启聚合
|
|
17375
17399
|
* @param [options.clustering.pixelRange = 20] - 多少像素矩形范围内聚合
|
|
17376
17400
|
* @param [options.clustering.clampToGround = true] - 是否贴地
|
|
17401
|
+
* @param [options.clustering.style] - 聚合点的样式参数
|
|
17377
17402
|
* @param [options.clustering.radius = 28] - 圆形图标的整体半径大小(单位:像素)
|
|
17378
17403
|
* @param [options.clustering.radiusIn = radius-5] - 圆形图标的内圆半径大小(单位:像素)
|
|
17379
17404
|
* @param [options.clustering.fontColor = '#ffffff'] - 数字的颜色
|
|
@@ -17423,6 +17448,7 @@ declare class GeodePoiLayer extends LodGraphicLayer {
|
|
|
17423
17448
|
enabled?: boolean;
|
|
17424
17449
|
pixelRange?: number;
|
|
17425
17450
|
clampToGround?: boolean;
|
|
17451
|
+
style?: BillboardEntity.StyleOptions | any;
|
|
17426
17452
|
radius?: number;
|
|
17427
17453
|
radiusIn?: number;
|
|
17428
17454
|
fontColor?: string;
|
|
@@ -17559,6 +17585,7 @@ declare namespace GeoJsonLayer {
|
|
|
17559
17585
|
* @param [options.clustering.enabled = false] - 是否开启聚合
|
|
17560
17586
|
* @param [options.clustering.pixelRange = 20] - 多少像素矩形范围内聚合
|
|
17561
17587
|
* @param [options.clustering.clampToGround = true] - 是否贴地
|
|
17588
|
+
* @param [options.clustering.style] - 聚合点的样式参数
|
|
17562
17589
|
* @param [options.clustering.radius = 26] - 内置样式时,圆形图标的半径大小(单位:像素)
|
|
17563
17590
|
* @param [options.clustering.fontColor = '#ffffff'] - 内置样式时,数字的颜色
|
|
17564
17591
|
* @param [options.clustering.color = 'rgba(181, 226, 140, 0.6)'] - 内置样式时,圆形图标的背景颜色
|
|
@@ -17632,6 +17659,7 @@ declare class GeoJsonLayer extends GraphicLayer {
|
|
|
17632
17659
|
enabled?: boolean;
|
|
17633
17660
|
pixelRange?: number;
|
|
17634
17661
|
clampToGround?: boolean;
|
|
17662
|
+
style?: BillboardEntity.StyleOptions | any;
|
|
17635
17663
|
radius?: number;
|
|
17636
17664
|
fontColor?: string;
|
|
17637
17665
|
color?: string;
|
|
@@ -17974,6 +18002,7 @@ declare namespace GraphicLayer {
|
|
|
17974
18002
|
* @param [options.clustering.enabled = false] - 是否开启聚合
|
|
17975
18003
|
* @param [options.clustering.pixelRange = 20] - 多少像素矩形范围内聚合
|
|
17976
18004
|
* @param [options.clustering.clampToGround = true] - 是否贴地
|
|
18005
|
+
* @param [options.clustering.style] - 聚合点的样式参数
|
|
17977
18006
|
* @param [options.clustering.radius = 26] - 内置样式时,圆形图标的半径大小(单位:像素)
|
|
17978
18007
|
* @param [options.clustering.fontColor = '#ffffff'] - 内置样式时,数字的颜色
|
|
17979
18008
|
* @param [options.clustering.color = 'rgba(181, 226, 140, 0.6)'] - 内置样式时,圆形图标的背景颜色
|
|
@@ -18033,6 +18062,7 @@ declare class GraphicLayer extends BaseGraphicLayer {
|
|
|
18033
18062
|
enabled?: boolean;
|
|
18034
18063
|
pixelRange?: number;
|
|
18035
18064
|
clampToGround?: boolean;
|
|
18065
|
+
style?: BillboardEntity.StyleOptions | any;
|
|
18036
18066
|
radius?: number;
|
|
18037
18067
|
fontColor?: string;
|
|
18038
18068
|
color?: string;
|
|
@@ -18779,9 +18809,10 @@ declare namespace TilesetLayer {
|
|
|
18779
18809
|
* 这个值如果设置的过小,导致cesium几乎每帧都在尝试淘汰数据,增加了遍历的时间,也同时增加了崩溃的风险。<br />
|
|
18780
18810
|
* 这个值如果设置的过大,cesium的淘汰机制失效,那么容易导致显存超过显卡内存,也会导致崩溃。 这个值应该处于最差视角下资源占用 和 显存最大量之间。<br />
|
|
18781
18811
|
* @param [options.position] - 自定义新的中心点位置(移动模型)
|
|
18782
|
-
* @param options.position.lng - 经度值, 180 - 180
|
|
18783
|
-
* @param options.position.lat - 纬度值, -90 - 90
|
|
18784
|
-
* @param options.position.alt - 高度值(单位:米)
|
|
18812
|
+
* @param [options.position.lng] - 经度值, 180 - 180
|
|
18813
|
+
* @param [options.position.lat] - 纬度值, -90 - 90
|
|
18814
|
+
* @param [options.position.alt] - 高度值(单位:米)
|
|
18815
|
+
* @param [options.position.alt_offset] - 相对于模型本身高度的偏移值(单位:米) ,如果有alt时已alt优先。
|
|
18785
18816
|
* @param [options.rotation] - 自定义旋转方向(旋转模型)
|
|
18786
18817
|
* @param options.rotation.x - X方向,角度值0-360
|
|
18787
18818
|
* @param options.rotation.y - Y方向,角度值0-360
|
|
@@ -18868,9 +18899,10 @@ declare class TilesetLayer extends BaseGraphicLayer {
|
|
|
18868
18899
|
maximumScreenSpaceError?: number;
|
|
18869
18900
|
maximumMemoryUsage?: number;
|
|
18870
18901
|
position?: {
|
|
18871
|
-
lng
|
|
18872
|
-
lat
|
|
18873
|
-
alt
|
|
18902
|
+
lng?: number;
|
|
18903
|
+
lat?: number;
|
|
18904
|
+
alt?: number;
|
|
18905
|
+
alt_offset?: number;
|
|
18874
18906
|
};
|
|
18875
18907
|
rotation?: {
|
|
18876
18908
|
x: number;
|
|
@@ -19171,10 +19203,6 @@ declare class TilesetLayer extends BaseGraphicLayer {
|
|
|
19171
19203
|
* @returns 无
|
|
19172
19204
|
*/
|
|
19173
19205
|
stopEditing(): void;
|
|
19174
|
-
/**
|
|
19175
|
-
* 透明度,取值范围:0.0-1.0
|
|
19176
|
-
*/
|
|
19177
|
-
opacity: number;
|
|
19178
19206
|
/**
|
|
19179
19207
|
* 飞行定位至图层数据所在的视角
|
|
19180
19208
|
* @param [options = {}] - 参数对象:
|
|
@@ -19218,7 +19246,7 @@ declare class TilesetLayer extends BaseGraphicLayer {
|
|
|
19218
19246
|
* @param [options.parameters.sortBy] - 排序的属性名称,默认升序,降序时+D
|
|
19219
19247
|
* @param [options.parameters.service = 'WFS'] - 服务类型
|
|
19220
19248
|
* @param [options.parameters.version = '1.0.0'] - 服务版本
|
|
19221
|
-
* @param [options.geometryName = 'the_geom'] - geometry
|
|
19249
|
+
* @param [options.geometryName = 'the_geom'] - geometry字段名称, 比如:geom 或 the_geom
|
|
19222
19250
|
* @param [options.headers] - 将被添加到HTTP请求头。
|
|
19223
19251
|
* @param [options.proxy] - 加载资源时使用的代理。
|
|
19224
19252
|
* @param options.layer - 图层名称(命名空间:图层名称),多个图层名称用逗号隔开
|
|
@@ -19252,6 +19280,7 @@ declare class TilesetLayer extends BaseGraphicLayer {
|
|
|
19252
19280
|
* @param [options.clustering.enabled = false] - 是否开启聚合
|
|
19253
19281
|
* @param [options.clustering.pixelRange = 20] - 多少像素矩形范围内聚合
|
|
19254
19282
|
* @param [options.clustering.clampToGround = true] - 是否贴地
|
|
19283
|
+
* @param [options.clustering.style] - 聚合点的样式参数
|
|
19255
19284
|
* @param [options.clustering.radius = 26] - 内置样式时,圆形图标的半径大小(单位:像素)
|
|
19256
19285
|
* @param [options.clustering.fontColor = '#ffffff'] - 内置样式时,数字的颜色
|
|
19257
19286
|
* @param [options.clustering.color = 'rgba(181, 226, 140, 0.6)'] - 内置样式时,圆形图标的背景颜色
|
|
@@ -19338,6 +19367,7 @@ declare class WfsLayer extends LodGraphicLayer {
|
|
|
19338
19367
|
enabled?: boolean;
|
|
19339
19368
|
pixelRange?: number;
|
|
19340
19369
|
clampToGround?: boolean;
|
|
19370
|
+
style?: BillboardEntity.StyleOptions | any;
|
|
19341
19371
|
radius?: number;
|
|
19342
19372
|
fontColor?: string;
|
|
19343
19373
|
color?: string;
|
|
@@ -23526,6 +23556,10 @@ declare class Map extends BaseClass {
|
|
|
23526
23556
|
* 是否只拾取模型上的点
|
|
23527
23557
|
*/
|
|
23528
23558
|
onlyPickModelPosition: boolean;
|
|
23559
|
+
/**
|
|
23560
|
+
* 是否只拾取地形上的点,忽略模型和矢量数据
|
|
23561
|
+
*/
|
|
23562
|
+
onlyPickTerrainPosition: boolean;
|
|
23529
23563
|
/**
|
|
23530
23564
|
* 获取鼠标事件控制器
|
|
23531
23565
|
*/
|
|
@@ -23606,7 +23640,7 @@ declare class Map extends BaseClass {
|
|
|
23606
23640
|
* 提取地球当前视域边界,示例:{ xmin: 70, xmax: 140, ymin: 0, ymax: 55, height: 0, }
|
|
23607
23641
|
* @param [options = {}] - 参数对象:
|
|
23608
23642
|
* @param [options.formatNum = false] - 是否格式化小数位,只保留6位小数
|
|
23609
|
-
* @param [options.scale = 1] -
|
|
23643
|
+
* @param [options.scale = 1] - 在每个方向上按给定比例扩展(大于0)或缩小(-1到0时)当前边界所创建的边界。比率为0.5时,边界在每个方向上扩展了50%。
|
|
23610
23644
|
* @returns 当前视域边界
|
|
23611
23645
|
*/
|
|
23612
23646
|
getExtent(options?: {
|
|
@@ -24864,6 +24898,7 @@ declare class LineFlowColorMaterialProperty extends BaseMaterialProperty {
|
|
|
24864
24898
|
* @param [options.color = new Cesium.Color(1, 0, 0, 1.0)] - 背景图片颜色
|
|
24865
24899
|
* @param [options.repeat = new Cesium.Cartesian2(1.0, 1.0)] - 横纵方向重复次数
|
|
24866
24900
|
* @param [options.axisY = false] - 是否Y轴朝上
|
|
24901
|
+
* @param [options.mixt = false] - 默认为color颜色,true时color颜色与图片颜色混合
|
|
24867
24902
|
* @param [options.speed = 10] - 速度
|
|
24868
24903
|
* @param [options.duration] - 播放总时长,单位:秒 (会覆盖speed参数)
|
|
24869
24904
|
* @param [options.hasImage2 = false] - 是否有2张图片的混合模式
|
|
@@ -24876,6 +24911,7 @@ declare class LineFlowMaterialProperty extends BaseMaterialProperty {
|
|
|
24876
24911
|
color?: string | Cesium.Color;
|
|
24877
24912
|
repeat?: Cesium.Cartesian2;
|
|
24878
24913
|
axisY?: boolean;
|
|
24914
|
+
mixt?: boolean;
|
|
24879
24915
|
speed?: number;
|
|
24880
24916
|
duration?: number;
|
|
24881
24917
|
hasImage2?: boolean;
|
|
@@ -24894,6 +24930,10 @@ declare class LineFlowMaterialProperty extends BaseMaterialProperty {
|
|
|
24894
24930
|
* 是否Y轴朝上
|
|
24895
24931
|
*/
|
|
24896
24932
|
axisY: boolean;
|
|
24933
|
+
/**
|
|
24934
|
+
* 默认为color颜色,true时color颜色与图片颜色混合
|
|
24935
|
+
*/
|
|
24936
|
+
mixt: boolean;
|
|
24897
24937
|
/**
|
|
24898
24938
|
* 速度
|
|
24899
24939
|
*/
|
|
@@ -26475,10 +26515,10 @@ declare namespace CamberRadar {
|
|
|
26475
26515
|
* @property [outlineColor = new Cesium.Color(1.0, 0.0, 0.0)] - 边线颜色
|
|
26476
26516
|
* @property startRadius - 内曲面半径 (单位:米)
|
|
26477
26517
|
* @property radius - 外曲面半径 (单位:米)
|
|
26478
|
-
* @property [startFovH =
|
|
26479
|
-
* @property [endFovH =
|
|
26480
|
-
* @property [startFovV =
|
|
26481
|
-
* @property [endFovV =
|
|
26518
|
+
* @property [startFovH = -50] - 左横截面角度(角度值)
|
|
26519
|
+
* @property [endFovH = 50] - 右横截面角度(角度值)
|
|
26520
|
+
* @property [startFovV = 5] - 垂直起始角度(角度值)
|
|
26521
|
+
* @property [endFovV = 85] - 垂直结束角度(角度值)
|
|
26482
26522
|
* @property [segmentH = 60] - 垂直方向(类似经度线)分割数
|
|
26483
26523
|
* @property [segmentV = 20] - 水平方向(类似纬度线)分割数
|
|
26484
26524
|
* @property [heading = 0] - 方向角 (度数值,0-360度)
|
|
@@ -26537,19 +26577,19 @@ declare class CamberRadar extends BasePointPrimitive {
|
|
|
26537
26577
|
*/
|
|
26538
26578
|
radius: number;
|
|
26539
26579
|
/**
|
|
26540
|
-
*
|
|
26580
|
+
* 左横截面角度(角度值)
|
|
26541
26581
|
*/
|
|
26542
26582
|
startFovV: number;
|
|
26543
26583
|
/**
|
|
26544
|
-
*
|
|
26584
|
+
* 右横截面角度(角度值)
|
|
26545
26585
|
*/
|
|
26546
26586
|
endFovV: number;
|
|
26547
26587
|
/**
|
|
26548
|
-
*
|
|
26588
|
+
* 垂直起始角度(角度值)
|
|
26549
26589
|
*/
|
|
26550
26590
|
startFovH: number;
|
|
26551
26591
|
/**
|
|
26552
|
-
*
|
|
26592
|
+
* 垂直结束角度(角度值)
|
|
26553
26593
|
*/
|
|
26554
26594
|
endFovH: number;
|
|
26555
26595
|
/**
|
|
@@ -29094,7 +29134,7 @@ declare class QueryGeoServer extends BaseClass {
|
|
|
29094
29134
|
* @param [queryOptions.column] - 检索关键字时,对应的字段名称
|
|
29095
29135
|
* @param [queryOptions.like = true] - 检索关键字时,是否模糊匹配,false时精确查询
|
|
29096
29136
|
* @param [queryOptions.graphic] - 限定的搜索区域
|
|
29097
|
-
* @param [queryOptions.geometryName = 'the_geom'] - 限定的搜索区域时,对应的geometry
|
|
29137
|
+
* @param [queryOptions.geometryName = 'the_geom'] - 限定的搜索区域时,对应的geometry字段名称, 比如:geom 或 the_geom
|
|
29098
29138
|
* @param [queryOptions.maxFeatures = 1000] - 返回结果最大数量
|
|
29099
29139
|
* @param [queryOptions.sortBy] - 排序的属性名称,默认升序,降序时+D
|
|
29100
29140
|
* @param [queryOptions.更多参数] - WFS服务支持的其他参数,均支持
|
|
@@ -29179,6 +29219,23 @@ declare class TdtPOI {
|
|
|
29179
29219
|
success?: (...params: any[]) => any;
|
|
29180
29220
|
error?: (...params: any[]) => any;
|
|
29181
29221
|
}): Promise<any>;
|
|
29222
|
+
/**
|
|
29223
|
+
* 天地图搜索提示
|
|
29224
|
+
* @param queryOptions - 查询参数
|
|
29225
|
+
* @param queryOptions.text - 输入建议关键字(支持拼音)
|
|
29226
|
+
* @param [queryOptions.location] - 建议使用location参数,可在此location附近优先返回搜索关键词信息,在请求参数city不为空时生效
|
|
29227
|
+
* @param [queryOptions.city] - 可以限定查询的行政区
|
|
29228
|
+
* @param [queryOptions.success] - 查询完成的回调方法
|
|
29229
|
+
* @param [queryOptions.error] - 查询失败的回调方法
|
|
29230
|
+
* @returns 查询完成的Promise,等价于success参数
|
|
29231
|
+
*/
|
|
29232
|
+
autoTip(queryOptions: {
|
|
29233
|
+
text: string;
|
|
29234
|
+
location?: LngLatPoint | Cesium.Cartesian3 | string | any[] | any;
|
|
29235
|
+
city?: string;
|
|
29236
|
+
success?: (...params: any[]) => any;
|
|
29237
|
+
error?: (...params: any[]) => any;
|
|
29238
|
+
}): Promise<any>;
|
|
29182
29239
|
/**
|
|
29183
29240
|
* 按限定区域搜索
|
|
29184
29241
|
* @param queryOptions - 查询参数
|
|
@@ -29208,7 +29265,8 @@ declare class TdtPOI {
|
|
|
29208
29265
|
* @param queryOptions.text - 检索关键字。支持多个关键字并集检索,不同关键字间以空格符号分隔,最多支持10个关键字检索。
|
|
29209
29266
|
* @param [queryOptions.types = ''] - 检索分类偏好,与text组合进行检索,多个分类以","分隔(POI分类),如果需要严格按分类检索,请通过text参数设置
|
|
29210
29267
|
* @param [queryOptions.city] - 可以重新限定查询的区域,默认为类构造时传入的city
|
|
29211
|
-
* @param [queryOptions.
|
|
29268
|
+
* @param [queryOptions.level = 18] - 查询的级别,1-18级
|
|
29269
|
+
* @param [queryOptions.mapBound] - 查询的地图范围: "minx,miny,maxx,maxy"
|
|
29212
29270
|
* @param [queryOptions.count = 20] - 单次召回POI数量,最大返回300条。多关键字检索时,返回的记录数为关键字个数*count。多关键词检索时,单页返回总数=关键词数量*count
|
|
29213
29271
|
* @param [queryOptions.page = 0] - 分页页码,默认为0, 0代表第一页,1代表第二页,以此类推。常与 count 搭配使用,仅当返回结果为poi时可以翻页。
|
|
29214
29272
|
* @param [queryOptions.success] - 查询完成的回调方法
|
|
@@ -29219,7 +29277,8 @@ declare class TdtPOI {
|
|
|
29219
29277
|
text: string;
|
|
29220
29278
|
types?: string;
|
|
29221
29279
|
city?: string;
|
|
29222
|
-
|
|
29280
|
+
level?: string;
|
|
29281
|
+
mapBound?: string;
|
|
29223
29282
|
count?: number;
|
|
29224
29283
|
page?: number;
|
|
29225
29284
|
success?: (...params: any[]) => any;
|
|
@@ -29273,6 +29332,27 @@ declare class TdtPOI {
|
|
|
29273
29332
|
success?: (...params: any[]) => any;
|
|
29274
29333
|
error?: (...params: any[]) => any;
|
|
29275
29334
|
}): Promise<any>;
|
|
29335
|
+
/**
|
|
29336
|
+
* 视野内搜索
|
|
29337
|
+
* @param queryOptions - 查询参数
|
|
29338
|
+
* @param queryOptions.text - 检索关键字。支持多个关键字并集检索,不同关键字间以空格符号分隔,最多支持10个关键字检索。
|
|
29339
|
+
* @param [queryOptions.types = ''] - 检索分类偏好,与text组合进行检索,多个分类以","分隔(POI分类),如果需要严格按分类检索,请通过text参数设置
|
|
29340
|
+
* @param queryOptions.extent - 可传入左上右下两顶点坐标对;
|
|
29341
|
+
* @param [queryOptions.count = 20] - 单次召回POI数量,最大返回25条。多关键字检索时,返回的记录数为关键字个数*count。多关键词检索时,单页返回总数=关键词数量*count
|
|
29342
|
+
* @param [queryOptions.page = 0] - 分页页码,默认为0, 0代表第一页,1代表第二页,以此类推。常与 count 搭配使用,仅当返回结果为poi时可以翻页。
|
|
29343
|
+
* @param [queryOptions.success] - 查询完成的回调方法
|
|
29344
|
+
* @param [queryOptions.error] - 查询失败的回调方法
|
|
29345
|
+
* @returns 查询完成的Promise,等价于success参数
|
|
29346
|
+
*/
|
|
29347
|
+
queryExtent(queryOptions: {
|
|
29348
|
+
text: string;
|
|
29349
|
+
types?: string;
|
|
29350
|
+
extent: any[][];
|
|
29351
|
+
count?: number;
|
|
29352
|
+
page?: number;
|
|
29353
|
+
success?: (...params: any[]) => any;
|
|
29354
|
+
error?: (...params: any[]) => any;
|
|
29355
|
+
}): Promise<any>;
|
|
29276
29356
|
}
|
|
29277
29357
|
|
|
29278
29358
|
declare namespace Measure {
|
|
@@ -31008,6 +31088,11 @@ declare class TilesetEditBase extends BaseThing {
|
|
|
31008
31088
|
* @returns 添加区域的记录对象
|
|
31009
31089
|
*/
|
|
31010
31090
|
addArea(positions: string[] | any[][] | LngLatPoint[] | Cesium.Cartesian3[]): any;
|
|
31091
|
+
/**
|
|
31092
|
+
* 转为Json简单对象,用于存储后再传参加载
|
|
31093
|
+
* @returns Json简单对象
|
|
31094
|
+
*/
|
|
31095
|
+
toJSON(): any;
|
|
31011
31096
|
}
|
|
31012
31097
|
|
|
31013
31098
|
/**
|
|
@@ -31091,6 +31176,11 @@ declare class TilesetFlat extends TilesetEditBase {
|
|
|
31091
31176
|
* @returns 无
|
|
31092
31177
|
*/
|
|
31093
31178
|
removeArea(item: number | any): void;
|
|
31179
|
+
/**
|
|
31180
|
+
* 转为Json简单对象,用于存储后再传参加载
|
|
31181
|
+
* @returns Json简单对象
|
|
31182
|
+
*/
|
|
31183
|
+
toJSON(): any;
|
|
31094
31184
|
/**
|
|
31095
31185
|
* 清除分析
|
|
31096
31186
|
* @returns 无
|
|
@@ -31308,6 +31398,11 @@ declare class TilesetPlanClip extends BaseThing {
|
|
|
31308
31398
|
* @returns 无
|
|
31309
31399
|
*/
|
|
31310
31400
|
updateAllNormalZ(val: number): void;
|
|
31401
|
+
/**
|
|
31402
|
+
* 转为Json简单对象,用于存储后再传参加载
|
|
31403
|
+
* @returns Json简单对象
|
|
31404
|
+
*/
|
|
31405
|
+
toJSON(): any;
|
|
31311
31406
|
}
|
|
31312
31407
|
|
|
31313
31408
|
/**
|