@aibee/crc-bmap 0.14.0 → 0.14.1
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/lib/index.cjs +9 -9
- package/lib/index.esm.min.js +8 -8
- package/lib/meta.json +3 -3
- package/lib/src/bmap.d.ts +1 -3
- package/package.json +1 -1
package/lib/meta.json
CHANGED
|
@@ -4864,7 +4864,7 @@
|
|
|
4864
4864
|
"format": "esm"
|
|
4865
4865
|
},
|
|
4866
4866
|
"../lib/src/bmap.js": {
|
|
4867
|
-
"bytes":
|
|
4867
|
+
"bytes": 21840,
|
|
4868
4868
|
"imports": [
|
|
4869
4869
|
{
|
|
4870
4870
|
"path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
|
|
@@ -9287,7 +9287,7 @@
|
|
|
9287
9287
|
"bytesInOutput": 208
|
|
9288
9288
|
},
|
|
9289
9289
|
"../lib/src/bmap.js": {
|
|
9290
|
-
"bytesInOutput":
|
|
9290
|
+
"bytesInOutput": 10820
|
|
9291
9291
|
},
|
|
9292
9292
|
"../lib/src/context/context.js": {
|
|
9293
9293
|
"bytesInOutput": 8715
|
|
@@ -9749,7 +9749,7 @@
|
|
|
9749
9749
|
"bytesInOutput": 575
|
|
9750
9750
|
}
|
|
9751
9751
|
},
|
|
9752
|
-
"bytes":
|
|
9752
|
+
"bytes": 403665
|
|
9753
9753
|
}
|
|
9754
9754
|
}
|
|
9755
9755
|
}
|
package/lib/src/bmap.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { EventDispatcher, Object3D, Vector3 } from "three";
|
|
|
2
2
|
import { Context } from "./context/context";
|
|
3
3
|
import { Timer, HooksName } from "./utils";
|
|
4
4
|
import { Config, ParamsConfig } from "./config";
|
|
5
|
-
import { Floor, Graphic,
|
|
5
|
+
import { Floor, Graphic, ModelOptions, Poi, Poi2, PoiOptionsParam, PoiOptionsParam2 } from "./elements";
|
|
6
6
|
import { SvgLine, SvgPolygon } from "./elements";
|
|
7
7
|
import { GraphicInfo, GraphicOptions } from "./types";
|
|
8
8
|
import { Plugin } from "./plugins/base";
|
|
@@ -72,7 +72,6 @@ export declare class BMap extends EventDispatcher<BmapEventMap> {
|
|
|
72
72
|
initialFloorCamera(): void;
|
|
73
73
|
onControlChange: () => void;
|
|
74
74
|
addModel(graphic: Graphic, options: ModelOptions): void;
|
|
75
|
-
addHeatmap(data: HeatmapDataParam): any;
|
|
76
75
|
getLegacyToGraphicMap(): Map<string, Graphic>;
|
|
77
76
|
/**
|
|
78
77
|
* 获取当前楼层全部的graphic
|
|
@@ -85,7 +84,6 @@ export declare class BMap extends EventDispatcher<BmapEventMap> {
|
|
|
85
84
|
y: number;
|
|
86
85
|
z: number;
|
|
87
86
|
}, options: PoiOptionsParam2): Poi2 | null;
|
|
88
|
-
removeHeatMap(): void;
|
|
89
87
|
/**
|
|
90
88
|
* 移动相机位置让选中的元素居中显示
|
|
91
89
|
* @param ele { Graphic | Poi }
|