@masterportal/masterportalapi 2.14.0 → 2.15.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/CHANGELOG.md +7 -1
- package/example/config/localGeoJSONPoints.js +2106 -0
- package/example/config/portal.json +39 -0
- package/example/config/services.json +10 -0
- package/example/index.js +25 -14
- package/package.json +64 -63
- package/src/index.js +3 -1
- package/src/layer/geojson/index.js +55 -4
- package/src/layer/oaf.js +35 -5
- package/src/layer/vectorBase.js +20 -1
- package/src/layer/wfs.js +38 -7
- package/src/maps/ol/olMap.js +4 -3
- package/src/renderer/webgl.js +250 -0
- package/src/vectorStyle/styleList.js +1 -1
- package/test/layer/geojson/index.test.js +23 -0
- package/test/layer/oaf.test.js +30 -0
- package/test/layer/vectorBase.test.js +27 -7
- package/test/layer/wfs.test.js +30 -0
- package/test/renderer/webgl.test.js +161 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,15 @@
|
|
|
3
3
|
|
|
4
4
|
The [Semantic Versioning](https://semver.org/spec/v2.0.0.html) is used.
|
|
5
5
|
|
|
6
|
+
## 2.15.0 - 2023-02-28
|
|
7
|
+
### Added
|
|
8
|
+
- WebGL Render-Pipeline for all VectorLayer types can be called using {"renderer": "webgl"} in config.json
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
6
12
|
## 2.14.0 - 2023-02-22
|
|
7
13
|
### Added
|
|
8
|
-
- VectorStyle is now part of the
|
|
14
|
+
- VectorStyle is now part of the masterportalAPI.
|
|
9
15
|
- The following packages have been installed:
|
|
10
16
|
- use-resize-observer: 9.1.0
|
|
11
17
|
|