@aibee/crc-bmap 0.14.17 → 0.14.19

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
@@ -4901,7 +4901,7 @@
4901
4901
  "format": "esm"
4902
4902
  },
4903
4903
  "../lib/src/bmap.js": {
4904
- "bytes": 22144,
4904
+ "bytes": 22286,
4905
4905
  "imports": [
4906
4906
  {
4907
4907
  "path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
@@ -5360,7 +5360,7 @@
5360
5360
  "format": "esm"
5361
5361
  },
5362
5362
  "../lib/src/plugins/navigation/navigation.js": {
5363
- "bytes": 31804,
5363
+ "bytes": 32362,
5364
5364
  "imports": [
5365
5365
  {
5366
5366
  "path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
@@ -6084,7 +6084,7 @@
6084
6084
  "format": "esm"
6085
6085
  },
6086
6086
  "../lib/src/plugins/car-inertial-position/utils.js": {
6087
- "bytes": 6846,
6087
+ "bytes": 6835,
6088
6088
  "imports": [
6089
6089
  {
6090
6090
  "path": "core-js/modules/web.dom-collections.iterator.js",
@@ -6115,7 +6115,7 @@
6115
6115
  "format": "esm"
6116
6116
  },
6117
6117
  "../lib/src/plugins/car-inertial-position/car-inertial-position.js": {
6118
- "bytes": 13693,
6118
+ "bytes": 13937,
6119
6119
  "imports": [
6120
6120
  {
6121
6121
  "path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
@@ -6137,6 +6137,11 @@
6137
6137
  "kind": "import-statement",
6138
6138
  "external": true
6139
6139
  },
6140
+ {
6141
+ "path": "core-js/modules/web.dom-collections.iterator.js",
6142
+ "kind": "import-statement",
6143
+ "external": true
6144
+ },
6140
6145
  {
6141
6146
  "path": "../lib/src/plugins/car-inertial-position/utils.js",
6142
6147
  "kind": "import-statement",
@@ -9059,6 +9064,11 @@
9059
9064
  "kind": "import-statement",
9060
9065
  "external": true
9061
9066
  },
9067
+ {
9068
+ "path": "core-js/modules/web.dom-collections.iterator.js",
9069
+ "kind": "import-statement",
9070
+ "external": true
9071
+ },
9062
9072
  {
9063
9073
  "path": "core-js/modules/es.array.push.js",
9064
9074
  "kind": "import-statement",
@@ -9350,7 +9360,7 @@
9350
9360
  "bytesInOutput": 208
9351
9361
  },
9352
9362
  "../lib/src/bmap.js": {
9353
- "bytesInOutput": 11039
9363
+ "bytesInOutput": 11140
9354
9364
  },
9355
9365
  "../lib/src/context/context.js": {
9356
9366
  "bytesInOutput": 9423
@@ -9707,7 +9717,7 @@
9707
9717
  "bytesInOutput": 205
9708
9718
  },
9709
9719
  "../lib/src/plugins/navigation/navigation.js": {
9710
- "bytesInOutput": 15434
9720
+ "bytesInOutput": 15448
9711
9721
  },
9712
9722
  "../lib/src/plugins/navigation/path.js": {
9713
9723
  "bytesInOutput": 2839
@@ -9779,10 +9789,10 @@
9779
9789
  "bytesInOutput": 1040
9780
9790
  },
9781
9791
  "../lib/src/plugins/car-inertial-position/car-inertial-position.js": {
9782
- "bytesInOutput": 5239
9792
+ "bytesInOutput": 5753
9783
9793
  },
9784
9794
  "../lib/src/plugins/car-inertial-position/utils.js": {
9785
- "bytesInOutput": 1638
9795
+ "bytesInOutput": 1631
9786
9796
  },
9787
9797
  "../lib/src/plugins/recommend-parking-space/recommand-parking-space.js": {
9788
9798
  "bytesInOutput": 732
@@ -9815,7 +9825,7 @@
9815
9825
  "bytesInOutput": 575
9816
9826
  }
9817
9827
  },
9818
- "bytes": 407394
9828
+ "bytes": 408016
9819
9829
  }
9820
9830
  }
9821
9831
  }
package/lib/src/bmap.d.ts CHANGED
@@ -53,13 +53,14 @@ export declare class BMap extends EventDispatcher<BmapEventMap> {
53
53
  type: MapType;
54
54
  currentBuildGround: GraphicOptions | null;
55
55
  observe: ResizeObserver | null;
56
- buildingCenter: [number, number];
57
56
  coordinateTransform: CoordinateTransform;
58
57
  timer: Timer;
59
58
  plugins: Plugin[];
60
59
  debounceResize: any;
61
60
  loader: AibeeLoader | null;
62
61
  constructor(container: HTMLElement, config?: ParamsConfig);
62
+ get buildingCenter(): [number, number];
63
+ set buildingCenter(center: [number, number]);
63
64
  get basicZoom(): number;
64
65
  set basicZoom(zoom: number);
65
66
  changeBuildingCenter(data: GraphicInfo | null, { brand, project }: {
@@ -35,6 +35,7 @@ export declare class CarInertialPosition extends EventDispatcher<CarInertialPosi
35
35
  beaconExcessesCount: number;
36
36
  angleExcessesCount: number;
37
37
  pathAngle: number;
38
+ lastExternalPositionTime: number;
38
39
  constructor();
39
40
  setPathAngle(angle: number): void;
40
41
  changeSpeed(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aibee/crc-bmap",
3
- "version": "0.14.17",
3
+ "version": "0.14.19",
4
4
  "description": "",
5
5
  "main": "lib/index.cjs",
6
6
  "module": "lib/index.esm.min.js",