geojs 1.9.2 → 1.10.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/.github/workflows/main.yml +1 -1
- package/CHANGELOG.md +38 -0
- package/geo.js +315 -42
- package/geo.lean.js +314 -41
- package/geo.lean.min.js +2 -2
- package/geo.min.js +7 -7
- package/package.json +3 -3
- package/src/action.js +3 -5
- package/src/annotation/annotation.js +73 -7
- package/src/annotation/polygonAnnotation.js +11 -0
- package/src/annotationLayer.js +73 -18
- package/src/event.js +28 -0
- package/src/lineFeature.js +6 -3
- package/src/main.styl +11 -0
- package/src/mapInteractor.js +49 -3
- package/src/registry.js +3 -0
- package/src/trackFeature.js +3 -1
- package/src/util/polyops.js +4 -1
- package/src/webgl/lineFeature.js +14 -0
|
@@ -80,7 +80,7 @@ jobs:
|
|
|
80
80
|
# Delete the package-lock to test with the latest libraries allowed
|
|
81
81
|
- run: rm package-lock.json
|
|
82
82
|
- run: npm install
|
|
83
|
-
- run: npm audit
|
|
83
|
+
- run: npm audit --audit-level high
|
|
84
84
|
- run: npm run setup-website
|
|
85
85
|
- run: npm run ci-xvfb
|
|
86
86
|
- run: npm run ci-build-website
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
+
## Version 1.10.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Add a cursor annotation mode ([#1224](../../pull/1224))
|
|
8
|
+
|
|
9
|
+
## Version 1.9.4
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
- Update on meta key changes ([#1221](../../pull/1221))
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- Fix determining annotation correspondence ([#1223](../../pull/1223))
|
|
18
|
+
|
|
19
|
+
## Version 1.9.3
|
|
20
|
+
|
|
21
|
+
### Improvements
|
|
22
|
+
|
|
23
|
+
- Speed up track feature ([#1220](../../pull/1220))
|
|
24
|
+
|
|
25
|
+
## Version 1.9.2
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- Explicitly have annotation defaults ([#1214](../../pull/1214))
|
|
30
|
+
|
|
31
|
+
## Version 1.9.1
|
|
32
|
+
|
|
33
|
+
### Changes
|
|
34
|
+
|
|
35
|
+
- Changed how one module was referenced in package dependencies ([#1213](../../pull/1213))
|
|
36
|
+
|
|
3
37
|
## Version 1.9.0
|
|
4
38
|
|
|
5
39
|
### Features
|
|
@@ -7,6 +41,10 @@
|
|
|
7
41
|
- Polygon operations ([#1198](../../pull/1198))
|
|
8
42
|
- Use meta keys to modify annotations ([#1209](../../pull/1209))
|
|
9
43
|
|
|
44
|
+
### Improvements
|
|
45
|
+
|
|
46
|
+
- Explicitly have annotation defaults ([#1212](../../pull/1212))
|
|
47
|
+
|
|
10
48
|
## Version 1.8.10
|
|
11
49
|
|
|
12
50
|
### Improvements
|