geojs 1.7.1 → 1.8.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 +20 -0
- package/CHANGELOG.md +18 -0
- package/geo.js +732 -149
- package/geo.lean.js +731 -148
- package/geo.lean.min.js +3 -3
- package/geo.min.js +5 -5
- package/package.json +18 -16
- package/src/annotation.js +300 -33
- package/src/annotationLayer.js +18 -23
- package/src/event.js +10 -0
- package/src/geojsonReader.js +68 -1
- package/src/layer.js +1 -1
- package/src/map.js +1 -2
- package/src/mapInteractor.js +21 -6
- package/src/markerFeature.js +21 -6
- package/src/tileLayer.js +10 -5
- 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/webglRenderer.js +4 -3
|
@@ -10,6 +10,8 @@ on:
|
|
|
10
10
|
release:
|
|
11
11
|
types:
|
|
12
12
|
- created
|
|
13
|
+
schedule:
|
|
14
|
+
- cron: "0 7 * * 1"
|
|
13
15
|
|
|
14
16
|
jobs:
|
|
15
17
|
build:
|
|
@@ -63,6 +65,24 @@ jobs:
|
|
|
63
65
|
name: website
|
|
64
66
|
path: |
|
|
65
67
|
website/public
|
|
68
|
+
unpinned:
|
|
69
|
+
runs-on: ubuntu-latest
|
|
70
|
+
steps:
|
|
71
|
+
- uses: actions/checkout@v2
|
|
72
|
+
# Don't pin version to test with the latest common version
|
|
73
|
+
- uses: actions/setup-node@v2
|
|
74
|
+
- run: npm --version && node --version
|
|
75
|
+
- uses: browser-actions/setup-firefox@latest
|
|
76
|
+
- run: sudo apt-get remove --yes fonts-lato
|
|
77
|
+
- run: fc-list
|
|
78
|
+
- run: firefox --version
|
|
79
|
+
- run: google-chrome --version
|
|
80
|
+
# Delete the package-lock to test with the latest libraries allowed
|
|
81
|
+
- run: rm package-lock.json
|
|
82
|
+
- run: npm install
|
|
83
|
+
- run: npm run setup-website
|
|
84
|
+
- run: npm run ci-xvfb
|
|
85
|
+
- run: npm run ci-build-website
|
|
66
86
|
deploy-website:
|
|
67
87
|
if: ${{ github.ref == 'refs/heads/master' }}
|
|
68
88
|
needs: build
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
+
## Version 1.7.3
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- Emit layerMove event when changing a lyer's z-index ([#1185](../../pull/1185))
|
|
8
|
+
|
|
9
|
+
## Version 1.7.2
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- Tile layers with keepLower: false purged tiles on high zoom ([#1178](../../pull/1178))
|
|
14
|
+
|
|
15
|
+
## Version 1.7.1
|
|
16
|
+
|
|
17
|
+
### Improvements
|
|
18
|
+
|
|
19
|
+
- Reduce texture memory check ([#1175](../../pull/1175))
|
|
20
|
+
|
|
3
21
|
## Version 1.7.0
|
|
4
22
|
|
|
5
23
|
### Features
|