geojs 1.8.1 → 1.8.4
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/.github/workflows/main.yml +1 -0
- package/CHANGELOG.md +25 -0
- package/geo.js +309 -92
- package/geo.lean.js +307 -90
- package/geo.lean.min.js +2 -2
- package/geo.min.js +6 -6
- package/package.json +9 -9
- package/src/annotation.js +153 -52
- package/src/annotationLayer.js +28 -13
- package/src/fetchQueue.js +26 -1
- package/src/tileLayer.js +18 -2
- package/src/util/common.js +6 -1
- package/src/webgl/tileLayer.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
+
## Version 1.8.4
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
- Support polygon annotations with holes through geojson ([#1201](../../pull/1201))
|
|
8
|
+
- Adjust queue track size based on number of tile layers ([#1202](../../pull/1202))
|
|
9
|
+
|
|
10
|
+
## Version 1.8.3
|
|
11
|
+
|
|
12
|
+
### Improvements
|
|
13
|
+
|
|
14
|
+
- Support polygon annotations with holes ([#1200](../../pull/1200))
|
|
15
|
+
|
|
16
|
+
## Version 1.8.2
|
|
17
|
+
|
|
18
|
+
### Improvements
|
|
19
|
+
|
|
20
|
+
- Reduce tile layer updates ([#1196](../../pull/1196))
|
|
21
|
+
|
|
22
|
+
## Version 1.8.1
|
|
23
|
+
|
|
24
|
+
### Improvements
|
|
25
|
+
|
|
26
|
+
- Reduce memory copy on pixelmap layer creation ([#1194](../../pull/1194))
|
|
27
|
+
|
|
3
28
|
## Version 1.8.0
|
|
4
29
|
|
|
5
30
|
### Features
|