geojs 1.6.3 → 1.7.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +31 -1
  2. package/README.md +14 -9
  3. package/geo.js +1101 -417
  4. package/geo.lean.js +1101 -417
  5. package/geo.lean.min.js +3 -3
  6. package/geo.min.js +5 -5
  7. package/package.json +6 -8
  8. package/src/annotation.js +11 -7
  9. package/src/annotationLayer.js +7 -7
  10. package/src/camera.js +5 -5
  11. package/src/canvas/pixelmapFeature.js +208 -0
  12. package/src/choroplethFeature.js +1 -1
  13. package/src/domRenderer.js +2 -1
  14. package/src/featureLayer.js +1 -1
  15. package/src/fileReader.js +2 -2
  16. package/src/imageTile.js +2 -1
  17. package/src/index.js +1 -0
  18. package/src/isolineFeature.js +1 -1
  19. package/src/layer.js +4 -2
  20. package/src/lineFeature.js +3 -3
  21. package/src/map.js +17 -15
  22. package/src/mapInteractor.js +17 -17
  23. package/src/markerFeature.js +2 -2
  24. package/src/meshFeature.js +1 -1
  25. package/src/osmLayer.js +2 -0
  26. package/src/pixelmapFeature.js +97 -249
  27. package/src/pixelmapLayer.js +145 -0
  28. package/src/pointFeature.js +1 -1
  29. package/src/polygonFeature.js +3 -3
  30. package/src/quadFeature.js +1 -1
  31. package/src/registry.js +2 -2
  32. package/src/svg/svgRenderer.js +3 -3
  33. package/src/tileCache.js +1 -1
  34. package/src/tileLayer.js +13 -12
  35. package/src/trackFeature.js +19 -19
  36. package/src/transform.js +8 -9
  37. package/src/typedef.js +2 -0
  38. package/src/ui/sliderWidget.js +1 -1
  39. package/src/util/clustering.js +3 -3
  40. package/src/util/color.js +1 -1
  41. package/src/util/common.js +7 -7
  42. package/src/util/throttle.js +1 -1
  43. package/src/webgl/index.js +2 -0
  44. package/src/webgl/lookupTable2D.js +122 -0
  45. package/src/webgl/markerFeature.js +1 -1
  46. package/src/webgl/pixelmapFeature.frag +47 -0
  47. package/src/webgl/pixelmapFeature.js +203 -0
  48. package/src/webgl/pointFeature.js +1 -1
  49. package/src/webgl/quadFeature.js +35 -2
  50. package/src/webgl/webglRenderer.js +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # GeoJS Change Log
2
2
 
3
+ ## Version 1.7.0
4
+
5
+ ### Features
6
+
7
+ - Support tiled pixelmaps ([#1153](../../pull/1153))
8
+
9
+ ## Version 1.6.6
10
+
11
+ ### Improvements
12
+
13
+ - Add support for webgl pixelmaps ([#1152](../../pull/1152))
14
+
15
+ ## Version 1.6.5
16
+
17
+ ### Bug Fixes
18
+
19
+ - Fix spelling of collinear ([#1173](../../pull/1173))
20
+
21
+ ## Version 1.6.4
22
+
23
+ ### Bug Fixes
24
+
25
+ - Fix the priority of styles used for tracks ([#1169](../../pull/1169))
26
+
27
+ ## Version 1.6.3
28
+
29
+ ### Improvements
30
+
31
+ - Update option for addAnnotation ([#1161](../../pull/1161))
32
+
3
33
  ## Version 1.6.2
4
34
 
5
35
  ### Bug Fixes
@@ -367,7 +397,7 @@
367
397
  - Added an `object.geoIsOn` function to check if an event is bound ([#768](../../pull/768))
368
398
  - Use the average perimeter for the center of a polygon or line ([#761](../../pull/761))
369
399
  - Allow display to/from gcs conversion functions to handle arrays of points ([#766](../../pull/766))
370
- - When drawing a line annotation, don't create intermediate colinear points ([#759](../../pull/759))
400
+ - When drawing a line annotation, don't create intermediate collinear points ([#759](../../pull/759))
371
401
  - Improve exiting and reloading maps ([#750](../../pull/750))
372
402
  - Various minor improvements ([#767](../../pull/767), [#760](../../pull/760))
373
403
 
package/README.md CHANGED
@@ -3,7 +3,8 @@
3
3
  [![Build Status](https://github.com/opengeoscience/geojs/actions/workflows/main.yml/badge.svg)](https://github.com/opengeoscience/geojs/actions)
4
4
  [![codecov.io](https://codecov.io/github/OpenGeoscience/geojs/coverage.svg?branch=master)](https://codecov.io/github/OpenGeoscience/geojs?branch=master)
5
5
  [![DOI](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.15459-blue)](https://dx.doi.org/10.5281/zenodo.15459)
6
- [![Gitter](https://badges.gitter.im/OpenGeoscience/geojs.svg)](https://gitter.im/OpenGeoscience/geojs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
6
+ [![npm published version](https://img.shields.io/npm/v/geojs.svg)](https://www.npmjs.com/package/geojs)
7
+ [![Gitter](https://badges.gitter.im/OpenGeoscience/geojs.svg)](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. Please send us an email at
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] (https://github.com/girder) based applications such
60
- as [Dansfield-App](https://github.com/Kitware/Danesfield-App) and [DIVE] (https://github.com/Kitware/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).