@aibee/crc-bmap 0.0.28 → 0.0.29
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/example/src/main.ts +4 -4
- package/lib/bmap.cjs.min.js +1 -1
- package/lib/bmap.cjs.min.js.map +2 -2
- package/lib/bmap.esm.js +2 -2
- package/lib/bmap.esm.js.map +2 -2
- package/lib/bmap.esm.min.js +1 -1
- package/lib/bmap.esm.min.js.map +2 -2
- package/lib/bmap.min.js +1 -1
- package/lib/bmap.min.js.map +2 -2
- package/package.json +1 -1
package/lib/bmap.esm.js
CHANGED
|
@@ -989,10 +989,10 @@ var PoiLayer = class extends Layer {
|
|
|
989
989
|
this.context.removeEventListener("update", this.onUpdate);
|
|
990
990
|
}
|
|
991
991
|
dispose() {
|
|
992
|
-
super.dispose();
|
|
993
|
-
this.unRegistryEvent();
|
|
994
992
|
this.pois.forEach((item) => item.dispose());
|
|
995
993
|
this.pois.length = 0;
|
|
994
|
+
super.dispose();
|
|
995
|
+
this.unRegistryEvent();
|
|
996
996
|
}
|
|
997
997
|
};
|
|
998
998
|
|