geojs 1.6.0 → 1.6.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 +4 -4
- package/.nvmrc +1 -0
- package/CHANGELOG.md +34 -0
- package/README.md +14 -9
- package/geo.js +1987 -1910
- package/geo.lean.js +1985 -1908
- package/geo.lean.min.js +3 -3
- package/geo.min.js +6 -6
- package/package.json +14 -19
- package/src/annotation.js +9 -5
- package/src/annotationLayer.js +9 -5
- package/src/camera.js +5 -5
- package/src/choroplethFeature.js +1 -1
- package/src/domRenderer.js +2 -1
- package/src/featureLayer.js +1 -1
- package/src/fileReader.js +2 -2
- package/src/imageTile.js +2 -1
- package/src/isolineFeature.js +1 -1
- package/src/layer.js +4 -2
- package/src/map.js +17 -15
- package/src/mapInteractor.js +17 -17
- package/src/markerFeature.js +2 -2
- package/src/meshFeature.js +1 -1
- package/src/osmLayer.js +4 -0
- package/src/pointFeature.js +1 -1
- package/src/registry.js +2 -2
- package/src/svg/svgRenderer.js +3 -3
- package/src/tile.js +1 -1
- package/src/tileCache.js +1 -1
- package/src/tileLayer.js +10 -10
- package/src/trackFeature.js +19 -19
- package/src/transform.js +8 -9
- package/src/typedef.js +2 -0
- package/src/ui/colorLegendWidget.styl +1 -1
- package/src/ui/sliderWidget.js +1 -1
- package/src/util/clustering.js +3 -3
- package/src/util/color.js +1 -1
- package/src/util/common.js +4 -4
- package/src/util/throttle.js +1 -1
- package/src/vtkjs/pointFeature.js +1 -1
- package/src/webgl/markerFeature.js +1 -1
- package/src/webgl/pointFeature.js +1 -1
- package/src/webgl/quadFeatureColor.vert +0 -1
- package/src/webgl/webglRenderer.js +1 -0
|
@@ -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,5 +1,39 @@
|
|
|
1
1
|
# GeoJS Change Log
|
|
2
2
|
|
|
3
|
+
## Version 1.6.4
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- Fix the priority of styles used for tracks ([#1169](../../pull/1169))
|
|
8
|
+
|
|
9
|
+
## Version 1.6.3
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
- Update option for addAnnotation ([#1161](../../pull/1161))
|
|
14
|
+
|
|
15
|
+
## Version 1.6.2
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- Do not name osm layers based on the tile source ([#1154](../../pull/1154))
|
|
20
|
+
|
|
21
|
+
## Version 1.6.1
|
|
22
|
+
|
|
23
|
+
### Changes
|
|
24
|
+
|
|
25
|
+
- Build for older browsers ([#1145](../../issues/1145))
|
|
26
|
+
|
|
27
|
+
## Version 1.6.0
|
|
28
|
+
|
|
29
|
+
### Changes
|
|
30
|
+
|
|
31
|
+
- Switch to webpack v5 and update build tooling ([#1132](../../issues/1132))
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- Harden checking for optional dependencies ([#1143](../../pull/1143))
|
|
36
|
+
|
|
3
37
|
## Version 1.5.0
|
|
4
38
|
|
|
5
39
|
### Features
|
package/README.md
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
[](https://github.com/opengeoscience/geojs/actions)
|
|
4
4
|
[](https://codecov.io/github/OpenGeoscience/geojs?branch=master)
|
|
5
5
|
[](https://dx.doi.org/10.5281/zenodo.15459)
|
|
6
|
-
[](https://www.npmjs.com/package/geojs)
|
|
7
|
+
[](https://gitter.im/OpenGeoscience/geojs)
|
|
7
8
|
|
|
8
9
|
GeoJS is intended to bridge the gap between
|
|
9
10
|
[GIS](https://en.wikipedia.org/wiki/Geographic_information_system),[Scientific Visualization](https://en.wikipedia.org/wiki/Scientific_visualization), and
|
|
@@ -38,15 +39,19 @@ Documentation
|
|
|
38
39
|
=============
|
|
39
40
|
You can find more information on GeoJS installation and usage in our [Documentation](https://geojs.readthedocs.org/en/latest/index.html).
|
|
40
41
|
|
|
42
|
+
There are some additional resources:
|
|
43
|
+
|
|
44
|
+
- [Quick-Start Guide](docs/quickstart.rst)
|
|
45
|
+
- [Provisioning for Development](docs/provisioning.rst)
|
|
46
|
+
- [Developer's Guide](docs/developers.rst)
|
|
47
|
+
- [User's Guide](docs/users.rst)
|
|
48
|
+
- [Examples](https://opengeoscience.github.io/geojs/examples)
|
|
49
|
+
- [Tutorials](https://opengeoscience.github.io/geojs/tutorials)
|
|
50
|
+
- [API Documentation](https://opengeoscience.github.io/geojs/apidocs)
|
|
41
51
|
|
|
42
52
|
Support
|
|
43
53
|
=======
|
|
44
|
-
We would love to get your feedback and bug reports.
|
|
45
|
-
[geojs-developers](https://public.kitware.com/mailman/listinfo/geojs-developers)
|
|
46
|
-
for questions related to feature requests, roadmap or in-depth
|
|
47
|
-
technical discussions. Use [geojs-users](https://public.kitware.com/mailman/listinfo/geojs-users)
|
|
48
|
-
if you have general questions or bug reports on GeoJS.
|
|
49
|
-
|
|
54
|
+
We would love to get your feedback and bug reports. Please use GitHub issues.
|
|
50
55
|
|
|
51
56
|
Get Involved
|
|
52
57
|
============
|
|
@@ -56,5 +61,5 @@ source software.
|
|
|
56
61
|
|
|
57
62
|
Related Efforts
|
|
58
63
|
===============
|
|
59
|
-
GeoJS has been used in various Girder [girder]
|
|
60
|
-
as [Dansfield-App](https://github.com/Kitware/Danesfield-App) and [DIVE]
|
|
64
|
+
GeoJS has been used in various Girder [girder](https://github.com/girder) based applications such
|
|
65
|
+
as [Dansfield-App](https://github.com/Kitware/Danesfield-App) and [DIVE](https://github.com/Kitware/dive).
|