@antv/l7-scene 2.23.3-beta.2 → 2.24.0

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/es/index.d.ts CHANGED
@@ -84,6 +84,9 @@ declare class Scene implements IPostProcessingPassPluggable, IMapController, ILa
84
84
  addMarkerLayer(layer: IMarkerLayer): void;
85
85
  removeMarkerLayer(layer: IMarkerLayer): void;
86
86
  removeAllMarkers(): void;
87
+ /**
88
+ * @deprecated 请使用 removeAllMarkers
89
+ */
87
90
  removeAllMakers(): void;
88
91
  addPopup(popup: IPopup): void;
89
92
  removePopup(popup: IPopup): void;
package/es/index.js CHANGED
@@ -275,6 +275,9 @@ var Scene = class {
275
275
  removeAllMarkers() {
276
276
  this.markerService.removeAllMarkers();
277
277
  }
278
+ /**
279
+ * @deprecated 请使用 removeAllMarkers
280
+ */
278
281
  removeAllMakers() {
279
282
  console.warn("removeAllMakers 已废弃,请使用 removeAllMarkers");
280
283
  this.markerService.removeAllMarkers();
package/lib/index.d.ts CHANGED
@@ -84,6 +84,9 @@ declare class Scene implements IPostProcessingPassPluggable, IMapController, ILa
84
84
  addMarkerLayer(layer: IMarkerLayer): void;
85
85
  removeMarkerLayer(layer: IMarkerLayer): void;
86
86
  removeAllMarkers(): void;
87
+ /**
88
+ * @deprecated 请使用 removeAllMarkers
89
+ */
87
90
  removeAllMakers(): void;
88
91
  addPopup(popup: IPopup): void;
89
92
  removePopup(popup: IPopup): void;
package/lib/index.js CHANGED
@@ -305,6 +305,9 @@ var Scene = class {
305
305
  removeAllMarkers() {
306
306
  this.markerService.removeAllMarkers();
307
307
  }
308
+ /**
309
+ * @deprecated 请使用 removeAllMarkers
310
+ */
308
311
  removeAllMakers() {
309
312
  console.warn("removeAllMakers 已废弃,请使用 removeAllMarkers");
310
313
  this.markerService.removeAllMarkers();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/l7-scene",
3
- "version": "2.23.3-beta.2",
3
+ "version": "2.24.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "https://github.com/orgs/antvis/people",
@@ -15,15 +15,15 @@
15
15
  "dependencies": {
16
16
  "@babel/runtime": "^7.7.7",
17
17
  "eventemitter3": "^4.0.7",
18
- "@antv/l7-core": "2.23.3-beta.2",
19
- "@antv/l7-component": "2.23.3-beta.2",
20
- "@antv/l7-maps": "2.23.3-beta.2",
21
- "@antv/l7-layers": "2.23.3-beta.2",
22
- "@antv/l7-renderer": "2.23.3-beta.2",
23
- "@antv/l7-utils": "2.23.3-beta.2"
18
+ "@antv/l7-core": "2.24.0",
19
+ "@antv/l7-layers": "2.24.0",
20
+ "@antv/l7-maps": "2.24.0",
21
+ "@antv/l7-renderer": "2.24.0",
22
+ "@antv/l7-component": "2.24.0",
23
+ "@antv/l7-utils": "2.24.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@antv/l7-test-utils": "^2.23.3-beta.2"
26
+ "@antv/l7-test-utils": "^2.24.0"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public",