terra-draw 0.0.1-alpha.33 → 0.0.1-alpha.34

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/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.1-alpha.34](https://github.com/JamesLMilner/terra-draw/compare/v0.0.1-alpha.33...v0.0.1-alpha.34) (2023-06-11)
6
+
7
+
8
+ ### Features
9
+
10
+ * add removeFeatures method to terra draw API ([b0999d2](https://github.com/JamesLMilner/terra-draw/commit/b0999d25ce0970852aa230181b9a949589e7b6d2))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * don't update closing points on mouse move ([c2b7ce8](https://github.com/JamesLMilner/terra-draw/commit/c2b7ce8fdc0260fc09e84b3372cb4101c6f6564e))
16
+ * fix issue with mapboxgl adapter where geometry renders were lost ([bc1a937](https://github.com/JamesLMilner/terra-draw/commit/bc1a9371d92871c8b5b4fe29fb07b53c0e78c99f))
17
+ * for mapbox/maplibre adapter, only update data for layers that have changes ([a3f5c8a](https://github.com/JamesLMilner/terra-draw/commit/a3f5c8a742e76f23634a79346d2797f44927fb95))
18
+
19
+
20
+ ### Chore
21
+
22
+ * update docs ([701a66a](https://github.com/JamesLMilner/terra-draw/commit/701a66a0243ecdccf448b59cfbe90ed9474253db))
23
+
5
24
  ### [0.0.1-alpha.33](https://github.com/JamesLMilner/terra-draw/compare/v0.0.1-alpha.32...v0.0.1-alpha.33) (2023-06-04)
6
25
 
7
26
 
@@ -23,6 +23,9 @@ export declare class TerraDrawMapboxGLAdapter extends TerraDrawBaseAdapter {
23
23
  private _addLayer;
24
24
  private _addGeoJSONLayer;
25
25
  private _setGeoJSONLayerData;
26
+ private getEmptyGeometries;
27
+ private changedIds;
28
+ private updateChangedIds;
26
29
  /**
27
30
  * Returns the longitude and latitude coordinates from a given PointerEvent on the map.
28
31
  * @param event The PointerEvent or MouseEvent containing the screen coordinates of the pointer.