geojs 1.5.0 → 1.6.3
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 +4 -4
- package/.nvmrc +1 -0
- package/CHANGELOG.md +26 -5
- package/geo.js +82956 -86701
- package/geo.lean.js +70006 -64329
- package/geo.lean.min.js +28 -41
- package/geo.min.js +30 -47
- package/package.json +63 -79
- package/src/annotationLayer.js +20 -16
- package/src/canvas/heatmapFeature.js +2 -2
- package/src/choroplethFeature.js +3 -3
- package/src/feature.js +4 -4
- package/src/geojsonReader.js +5 -4
- package/src/index.js +1 -1
- package/src/isolineFeature.js +4 -4
- package/src/lineFeature.js +4 -4
- package/src/map.js +2 -2
- package/src/mapInteractor.js +3 -0
- package/src/markerFeature.js +8 -8
- package/src/object.js +1 -3
- package/src/osmLayer.js +5 -3
- package/src/pixelmapFeature.js +1 -1
- package/src/pointFeature.js +1 -1
- package/src/polygonFeature.js +4 -4
- package/src/registry.js +1 -1
- package/src/svg/svgRenderer.js +3 -0
- package/src/svg/vectorFeature.js +1 -1
- package/src/tile.js +1 -1
- package/src/tileLayer.js +4 -4
- package/src/trackFeature.js +12 -12
- package/src/transform.js +11 -10
- package/src/ui/colorLegendWidget.js +6 -6
- package/src/ui/colorLegendWidget.styl +1 -1
- package/src/ui/legendWidget.js +3 -3
- package/src/ui/sliderWidget.js +4 -4
- package/src/util/common.js +9 -8
- package/src/util/mockVGL.js +2 -2
- package/src/util/throttle.js +3 -3
- package/src/vendor.js +0 -2
- package/src/vtkjs/pointFeature.js +1 -1
- package/src/vtkjs/vtkjsRenderer.js +3 -0
- package/src/webgl/layer.js +1 -1
- package/src/webgl/markerFeature.js +4 -4
- package/src/webgl/meshColored.js +3 -3
- package/src/webgl/pointFeature.js +11 -11
- package/src/webgl/polygonFeature.js +3 -3
- package/src/webgl/quadFeatureColor.vert +0 -1
- package/src/webgl/webglRenderer.js +1 -2
- package/src/polyfills.js +0 -4
|
@@ -18,14 +18,14 @@ jobs:
|
|
|
18
18
|
- uses: actions/checkout@v2
|
|
19
19
|
- uses: actions/setup-node@v2
|
|
20
20
|
with:
|
|
21
|
-
node-version: 14
|
|
21
|
+
node-version: '14'
|
|
22
22
|
- uses: browser-actions/setup-firefox@latest
|
|
23
|
-
- run: sudo apt-get install --yes --no-install-recommends
|
|
23
|
+
- run: sudo apt-get install --yes --no-install-recommends optipng
|
|
24
24
|
- run: sudo apt-get remove --yes fonts-lato
|
|
25
25
|
- run: fc-list
|
|
26
26
|
- run: firefox --version
|
|
27
27
|
- run: google-chrome --version
|
|
28
|
-
- run: npm
|
|
28
|
+
- run: npm ci
|
|
29
29
|
- run: npm run setup-website
|
|
30
30
|
- run: npm run ci-xvfb
|
|
31
31
|
- run: npm run ci-build-website
|
|
@@ -86,7 +86,7 @@ jobs:
|
|
|
86
86
|
- uses: actions/checkout@v2
|
|
87
87
|
- uses: actions/setup-node@v2
|
|
88
88
|
with:
|
|
89
|
-
node-version:
|
|
89
|
+
node-version: '16'
|
|
90
90
|
- run: npm ci
|
|
91
91
|
- name: Import artifacts
|
|
92
92
|
uses: actions/download-artifact@v2
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v14.18.3
|
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,37 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Version 1.6.2
|
|
4
4
|
|
|
5
|
+
### Bug Fixes
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
- Do not name osm layers based on the tile source ([#1154](../../pull/1154))
|
|
8
|
+
|
|
9
|
+
## Version 1.6.1
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
- Build for older browsers ([#1145](../../issues/1145))
|
|
14
|
+
|
|
15
|
+
## Version 1.6.0
|
|
16
|
+
|
|
17
|
+
### Changes
|
|
18
|
+
|
|
19
|
+
- Switch to webpack v5 and update build tooling ([#1132](../../issues/1132))
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
7
22
|
|
|
8
|
-
|
|
23
|
+
- Harden checking for optional dependencies ([#1143](../../pull/1143))
|
|
9
24
|
|
|
25
|
+
## Version 1.5.0
|
|
10
26
|
|
|
11
|
-
###
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
- Add scaleWithZoom option to heatmaps ([#1125](../../pull/1125))
|
|
30
|
+
|
|
31
|
+
### Improvements
|
|
12
32
|
|
|
13
|
-
|
|
33
|
+
- Automatically adjust heatmap update delay ([#1124](../../pull/1124))
|
|
34
|
+
- Log if we can't allocate texture memory([#1116](../../pull/1116))
|
|
14
35
|
|
|
15
36
|
## Version 1.4.3
|
|
16
37
|
|