geojs 1.7.3 → 1.8.2
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 +18 -0
- package/geo.js +731 -143
- package/geo.lean.js +730 -142
- package/geo.lean.min.js +3 -3
- package/geo.min.js +5 -5
- package/package.json +3 -3
- package/src/annotation.js +300 -33
- package/src/annotationLayer.js +18 -23
- package/src/geojsonReader.js +68 -1
- package/src/map.js +1 -2
- package/src/mapInteractor.js +21 -6
- package/src/markerFeature.js +21 -6
- package/src/pixelmapLayer.js +8 -2
- package/src/registry.js +5 -0
- package/src/trackFeature.js +1 -1
- package/src/ui/colorLegendWidget.js +1 -1
- package/src/ui/scaleWidget.js +1 -1
- package/src/webgl/markerFeature.js +3 -2
- package/src/webgl/tileLayer.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
+
## Version 1.8.2
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
- Reduce tile layer updates ([#1196](../../pull/1196))
|
|
8
|
+
|
|
9
|
+
## Version 1.8.1
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
- Reduce memory copy on pixelmap layer creation ([#1194](../../pull/1194))
|
|
14
|
+
|
|
15
|
+
## Version 1.8.0
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- Square, circle, and ellipse annotations, plus a way to constrain rectangle and ellipse annotations to a list of aspect ratios ([#1192](../../pull/1192))
|
|
20
|
+
|
|
3
21
|
## Version 1.7.3
|
|
4
22
|
|
|
5
23
|
### Bug Fixes
|