@aibee/crc-bmap 0.14.2 → 0.14.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/lib/index.cjs +2 -2
- package/lib/index.esm.min.js +2 -2
- package/lib/meta.json +5 -5
- package/lib/src/loader/AibeeLoader/layer.d.ts +1 -1
- package/lib/src/plugins/recommend-parking-space/recommand-parking-space.d.ts +2 -0
- package/lib/src/plugins/recommend-parking-space/recommend.worker.d.ts +5 -1
- package/package.json +1 -1
package/lib/meta.json
CHANGED
|
@@ -4683,7 +4683,7 @@
|
|
|
4683
4683
|
"format": "esm"
|
|
4684
4684
|
},
|
|
4685
4685
|
"../lib/src/loader/AibeeLoader/layer.js": {
|
|
4686
|
-
"bytes":
|
|
4686
|
+
"bytes": 10938,
|
|
4687
4687
|
"imports": [
|
|
4688
4688
|
{
|
|
4689
4689
|
"path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
|
|
@@ -6130,7 +6130,7 @@
|
|
|
6130
6130
|
"format": "esm"
|
|
6131
6131
|
},
|
|
6132
6132
|
"../lib/src/plugins/recommend-parking-space/recommand-parking-space.js": {
|
|
6133
|
-
"bytes":
|
|
6133
|
+
"bytes": 1514,
|
|
6134
6134
|
"imports": [
|
|
6135
6135
|
{
|
|
6136
6136
|
"path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
|
|
@@ -9614,7 +9614,7 @@
|
|
|
9614
9614
|
"bytesInOutput": 8841
|
|
9615
9615
|
},
|
|
9616
9616
|
"../lib/src/loader/AibeeLoader/layer.js": {
|
|
9617
|
-
"bytesInOutput":
|
|
9617
|
+
"bytesInOutput": 4410
|
|
9618
9618
|
},
|
|
9619
9619
|
"../lib/src/loader/AibeeLoader/utils.js": {
|
|
9620
9620
|
"bytesInOutput": 1143
|
|
@@ -9719,7 +9719,7 @@
|
|
|
9719
9719
|
"bytesInOutput": 1638
|
|
9720
9720
|
},
|
|
9721
9721
|
"../lib/src/plugins/recommend-parking-space/recommand-parking-space.js": {
|
|
9722
|
-
"bytesInOutput":
|
|
9722
|
+
"bytesInOutput": 723
|
|
9723
9723
|
},
|
|
9724
9724
|
"../lib/src/plugins/recommend-parking-space/recommend.worker.js": {
|
|
9725
9725
|
"bytesInOutput": 98
|
|
@@ -9749,7 +9749,7 @@
|
|
|
9749
9749
|
"bytesInOutput": 575
|
|
9750
9750
|
}
|
|
9751
9751
|
},
|
|
9752
|
-
"bytes":
|
|
9752
|
+
"bytes": 404017
|
|
9753
9753
|
}
|
|
9754
9754
|
}
|
|
9755
9755
|
}
|
|
@@ -6,7 +6,7 @@ export declare function transformLayersPoi(layer: AibeeFloorData["layers"][0], f
|
|
|
6
6
|
/**
|
|
7
7
|
* 转换图元
|
|
8
8
|
*/
|
|
9
|
-
export declare function graphLayer(layer: AibeeGraphicLayer, floor: Floor): void;
|
|
9
|
+
export declare function graphLayer(layer: AibeeGraphicLayer, floor: Floor, options: AibeeLoaderOptions): void;
|
|
10
10
|
export declare function groundLayer(layer: AibeeGroundLayer, floor: Floor): void;
|
|
11
11
|
/**
|
|
12
12
|
* 转换墙
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { type CarLotStatus } from './recommend.worker';
|
|
1
2
|
import { End2, Facility, RoadData2, Start2 } from '../../utils';
|
|
2
3
|
import { ParkingType } from '../../types';
|
|
3
4
|
interface RecommendParkingSpaceOptions {
|
|
4
5
|
placeId: string | number;
|
|
5
6
|
catLotStatusApi: string;
|
|
7
|
+
filterCarLotStatus?: (carLotStatus: CarLotStatus[]) => CarLotStatus[];
|
|
6
8
|
}
|
|
7
9
|
export declare class RecommendParkingSpace {
|
|
8
10
|
worker: Worker;
|