@aibee/crc-bmap 0.8.55 → 0.8.56
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/bmap.cjs.min.js +3 -3
- package/lib/bmap.esm.js +4 -3
- package/lib/bmap.esm.min.js +3 -3
- package/lib/bmap.min.js +3 -3
- package/lib/src/plugins/equipment/equipment.js +1 -0
- package/lib/src/plugins/mul-floor-navigation/mul-floor-navigation.js +1 -1
- package/lib/src/plugins/mul-floor-select/mul-floor-select.js +1 -1
- package/lib/src/plugins/navigation/navigation.js +1 -1
- package/package.json +1 -1
package/lib/bmap.esm.js
CHANGED
|
@@ -17398,6 +17398,7 @@ var Equipment = class extends Plugin {
|
|
|
17398
17398
|
(_this_bmap_context_currentFloor2 = this.bmap.context.currentFloor) == null ? void 0 : _this_bmap_context_currentFloor2.poiLayer.removePoi(poi);
|
|
17399
17399
|
}
|
|
17400
17400
|
});
|
|
17401
|
+
super.dispose();
|
|
17401
17402
|
}
|
|
17402
17403
|
constructor(bmap) {
|
|
17403
17404
|
super(bmap), this.equipmentList = [], this.equipmentMap = /* @__PURE__ */ new Map(), this.onSwitchFloor = (param) => {
|
|
@@ -19287,8 +19288,8 @@ var Navigation = class extends Plugin {
|
|
|
19287
19288
|
(_this_startRotateHelperPoi = this.startRotateHelperPoi) == null ? void 0 : _this_startRotateHelperPoi.dispose();
|
|
19288
19289
|
StartRotateHelperPoi.dispose();
|
|
19289
19290
|
this.positionNavigation.dispose();
|
|
19290
|
-
super.dispose();
|
|
19291
19291
|
this.startRotateHelperPoi = null;
|
|
19292
|
+
super.dispose();
|
|
19292
19293
|
}
|
|
19293
19294
|
constructor(bmap, project = {}, options) {
|
|
19294
19295
|
super(bmap), this.path = null, this.fetchRoadStatus = false, this.paths = [], this.curPathIndex = 0, this.curFloorPath = null, this.translatePath = null, this.currentPathPosition = null, this.toPointPosition = null, this.pathTween = null, this.startPoi = null, this.startPoiRotate = 0, this.startRotateHelperPoi = null, this.needStartRotateHelperPoi = false, this.movedDistance = 0, this.pathStart = [
|
|
@@ -21338,7 +21339,6 @@ var MulFloorNavigation = class extends Plugin {
|
|
|
21338
21339
|
}
|
|
21339
21340
|
}
|
|
21340
21341
|
dispose() {
|
|
21341
|
-
super.dispose();
|
|
21342
21342
|
if (this.path) {
|
|
21343
21343
|
this.bmap.context.scene.remove(this.path);
|
|
21344
21344
|
this.path.dispose();
|
|
@@ -21349,6 +21349,7 @@ var MulFloorNavigation = class extends Plugin {
|
|
|
21349
21349
|
}
|
|
21350
21350
|
this.tweenUtil.dispose();
|
|
21351
21351
|
this.unRegistryEvent();
|
|
21352
|
+
super.dispose();
|
|
21352
21353
|
}
|
|
21353
21354
|
constructor(bmap, mulFloor) {
|
|
21354
21355
|
super(bmap), this.mulFloor = mulFloor, this.path = null, this.fetchRoadStatus = false, this.paths = [], this.curFloorPath = null, this.translatePath = null, this.currentPathPosition = null, this.pathTween = null, this.startPoi = null, this.movedDistance = 0, this.tweenUtil = new TweenUtil(), this.animationPathOptions = {
|
|
@@ -21375,8 +21376,8 @@ var MulFloorSelect = class extends Plugin {
|
|
|
21375
21376
|
dispose() {
|
|
21376
21377
|
this.unRegistryEvent();
|
|
21377
21378
|
this.clickHelper.dispose();
|
|
21378
|
-
super.dispose();
|
|
21379
21379
|
this.mulFloors = null;
|
|
21380
|
+
super.dispose();
|
|
21380
21381
|
}
|
|
21381
21382
|
constructor(bmap, mulFloors) {
|
|
21382
21383
|
super(bmap), this.mulFloors = mulFloors, this._click = (param) => {
|