@aibee/crc-bmap 0.0.23 → 0.0.25

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/src/bmap.d.ts CHANGED
@@ -109,5 +109,7 @@ export declare class BMap extends EventDispatcher {
109
109
  deleteGraphic(graphic: Graphic): void;
110
110
  createGraphicByOptions(options: GraphicOptions): Graphic | undefined;
111
111
  removePoiById(id: string): void | undefined;
112
+ getPois(): import("./elements").Poi[];
113
+ clearPoi(): void;
112
114
  dispose(): void;
113
115
  }
@@ -4,6 +4,7 @@ import { Context } from '../context';
4
4
  export declare class PoiLayer extends Layer {
5
5
  pois: Poi[];
6
6
  constructor(context: Context);
7
+ clear(): this;
7
8
  createPoi(options: PoiOptionsParam): Poi;
8
9
  changePoiLevelOrCollisionEnable(poi: Poi): void;
9
10
  removePoi(poi: Poi): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aibee/crc-bmap",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "",
5
5
  "main": "lib/bmap.min.js",
6
6
  "module": "lib/bmap.esm.min.js",