leiting-bim 2.1.165 → 2.1.171
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/leiting-bim.es.js +1 -1
- package/leiting-bim.umd.js +7 -7
- package/package.json +2 -1
- package/plugins/cesium-core/dist/cesium-core.mjs +714 -672
- package/plugins/cesium-core/dist/cesium-core.mjs.map +1 -1
- package/plugins/cesium-core/dist/cesium-core.umd.js +21 -21
- package/plugins/cesium-core/dist/cesium-core.umd.js.map +1 -1
- package/plugins/cesium-core/dist/components/BufferedHierarchicalAggregator.d.ts +3 -0
- package/plugins/cesium-core/dist/components/entity/EntityLayer.d.ts +7 -1
- package/plugins/cesium-vue/dist/components/marker-manage.js +320 -270
- package/plugins/cesium-vue/dist/components/marker-manage.js.map +1 -1
|
@@ -73,6 +73,9 @@ export declare class BufferedHierarchicalAggregator {
|
|
|
73
73
|
private _createLevels;
|
|
74
74
|
addPoints(points: PointData[]): void;
|
|
75
75
|
appendPoints(newPoints: PointData[], isUpdate?: boolean): void;
|
|
76
|
+
private _getCurrentBillboard;
|
|
77
|
+
private _getBillboardTheme;
|
|
78
|
+
private _shouldSkipAggregation;
|
|
76
79
|
private _scheduleUpdate;
|
|
77
80
|
updatePoint(newData: Partial<PointData>): void;
|
|
78
81
|
removePointsById(ids: string[]): void;
|
|
@@ -5,6 +5,7 @@ interface EntityGroupOptions {
|
|
|
5
5
|
id: string;
|
|
6
6
|
entities?: any[];
|
|
7
7
|
primitives?: any[];
|
|
8
|
+
billboardPointIds?: string[];
|
|
8
9
|
dataItem?: any;
|
|
9
10
|
aggregator?: BufferedHierarchicalAggregator;
|
|
10
11
|
cardPool: HtmlOverlayLabelPool;
|
|
@@ -13,12 +14,16 @@ export declare class EntityGroup {
|
|
|
13
14
|
id: string;
|
|
14
15
|
entities: any[];
|
|
15
16
|
primitives: any[];
|
|
17
|
+
billboardPointIds: string[];
|
|
16
18
|
dataItem: any;
|
|
17
19
|
aggregator?: BufferedHierarchicalAggregator;
|
|
18
20
|
cardPool: HtmlOverlayLabelPool;
|
|
19
21
|
constructor(options: EntityGroupOptions);
|
|
20
22
|
setVisible(visible: boolean): void;
|
|
21
|
-
removeAll(viewer: any, immediately?: boolean):
|
|
23
|
+
removeAll(viewer: any, immediately?: boolean): {
|
|
24
|
+
groupId: any;
|
|
25
|
+
billboardPointIds: string[];
|
|
26
|
+
};
|
|
22
27
|
}
|
|
23
28
|
export declare class EntityLayer {
|
|
24
29
|
id: string;
|
|
@@ -30,6 +35,7 @@ export declare class EntityLayer {
|
|
|
30
35
|
cardPool: HtmlOverlayLabelPool;
|
|
31
36
|
constructor(id: string, Cesium: any, viewer: any, materialManager: MaterialManager, aggregator: BufferedHierarchicalAggregator, cardPool: HtmlOverlayLabelPool);
|
|
32
37
|
/** ====== 下面是抽出的创建函数 ====== */
|
|
38
|
+
private getBillboardPointId;
|
|
33
39
|
private createPolyline;
|
|
34
40
|
private createWall;
|
|
35
41
|
private createPolygon;
|