@aibee/crc-bmap 0.14.10 → 0.14.12

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/meta.json CHANGED
@@ -386,7 +386,7 @@
386
386
  "format": "esm"
387
387
  },
388
388
  "../lib/src/utils/road2.js": {
389
- "bytes": 55224,
389
+ "bytes": 55766,
390
390
  "imports": [
391
391
  {
392
392
  "path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
@@ -1888,7 +1888,7 @@
1888
1888
  "format": "esm"
1889
1889
  },
1890
1890
  "../lib/src/layer/parking-layer.js": {
1891
- "bytes": 9968,
1891
+ "bytes": 10013,
1892
1892
  "imports": [
1893
1893
  {
1894
1894
  "path": "core-js/modules/es.regexp.exec.js",
@@ -2160,7 +2160,7 @@
2160
2160
  "format": "esm"
2161
2161
  },
2162
2162
  "../src/utils/road2.ts": {
2163
- "bytes": 53504,
2163
+ "bytes": 54042,
2164
2164
  "imports": [
2165
2165
  {
2166
2166
  "path": "../../../node_modules/.pnpm/node-dijkstra@2.5.0/node_modules/node-dijkstra/libs/Graph.js",
@@ -4459,7 +4459,7 @@
4459
4459
  "format": "esm"
4460
4460
  },
4461
4461
  "../lib/src/context/control.js": {
4462
- "bytes": 7710,
4462
+ "bytes": 7720,
4463
4463
  "imports": [
4464
4464
  {
4465
4465
  "path": "core-js/modules/es.promise.finally.js",
@@ -9362,7 +9362,7 @@
9362
9362
  "bytesInOutput": 5426
9363
9363
  },
9364
9364
  "../lib/src/utils/road2.js": {
9365
- "bytesInOutput": 17042
9365
+ "bytesInOutput": 17294
9366
9366
  },
9367
9367
  "../lib/src/factory/unique-key.js": {
9368
9368
  "bytesInOutput": 733
@@ -9494,7 +9494,7 @@
9494
9494
  "bytesInOutput": 1754
9495
9495
  },
9496
9496
  "../lib/src/layer/parking-layer.js": {
9497
- "bytesInOutput": 3999
9497
+ "bytesInOutput": 4017
9498
9498
  },
9499
9499
  "../lib/src/layer/merged-model-layer.js": {
9500
9500
  "bytesInOutput": 252
@@ -9602,7 +9602,7 @@
9602
9602
  "bytesInOutput": 2201
9603
9603
  },
9604
9604
  "../lib/src/context/control.js": {
9605
- "bytesInOutput": 3684
9605
+ "bytesInOutput": 3691
9606
9606
  },
9607
9607
  "../lib/src/context/OrbitControls.js": {
9608
9608
  "bytesInOutput": 13564
@@ -9764,7 +9764,7 @@
9764
9764
  "bytesInOutput": 575
9765
9765
  }
9766
9766
  },
9767
- "bytes": 405772
9767
+ "bytes": 406049
9768
9768
  }
9769
9769
  }
9770
9770
  }
@@ -229,6 +229,29 @@ export declare class RoadNetwork2 {
229
229
  parkingType?: ParkingType;
230
230
  }>;
231
231
  lineMap: Map<string, Map<string, number>>;
232
+ weightPointMap: Map<string, {
233
+ id: string;
234
+ cds: [number, number];
235
+ name: string;
236
+ type: "normal" | "graph" | "straightLadder" | "staircase" | "escalator" | "facility" | "wall" | "lane" | "parkingSpace" | "texture2d" | "glb" | "ramp" | "connectionPoint" | "store";
237
+ floor: string;
238
+ nodeId: string;
239
+ visible: boolean;
240
+ targetId: string;
241
+ userData: Record<string, string>;
242
+ escalatorType: "" | "single" | "double" | "jd";
243
+ escalatorDirection: "" | "up" | "down" | "exit";
244
+ openStatus?: boolean;
245
+ startTime?: string;
246
+ endTime?: string;
247
+ permission?: number;
248
+ relatedId?: string;
249
+ crossName?: string;
250
+ isStarted?: boolean;
251
+ passWeight?: number;
252
+ coverageArea?: number;
253
+ parkingType?: ParkingType;
254
+ }[]>;
232
255
  baseRoute: Graph;
233
256
  escalatorRoute: Graph;
234
257
  straightLadderRoute: Graph;