@masterportal/masterportalapi 2.25.0 → 2.26.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 +9 -10
- package/package.json +2 -2
- package/src/layer/tileset.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,22 +3,21 @@
|
|
|
3
3
|
|
|
4
4
|
The [Semantic Versioning](https://semver.org/spec/v2.0.0.html) is used.
|
|
5
5
|
|
|
6
|
-
###
|
|
7
|
-
##
|
|
6
|
+
### 2.26.0 - 2023-08-23
|
|
7
|
+
## Changed
|
|
8
|
+
- The following packages have been updated:
|
|
9
|
+
- dependencies:
|
|
10
|
+
- ol: 7.4.0 to 7.5.1
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## 2.25.0 - 2023-08-21
|
|
8
15
|
|
|
9
16
|
### Changed
|
|
10
17
|
- WebGL: method "afterLoading" catches MultiPoint geometries and parses them to a single point feature for proper rendering
|
|
11
18
|
- WebGL Render-Pipeline for VectorLayer of type VectorTile can be called using {"renderer": "webgl"} in config.json.
|
|
12
|
-
|
|
13
|
-
## Changed
|
|
14
19
|
- The styleList is now loading asynchronus
|
|
15
20
|
|
|
16
|
-
## Deprecated
|
|
17
|
-
|
|
18
|
-
## Removed
|
|
19
|
-
|
|
20
|
-
## Fixed
|
|
21
|
-
|
|
22
21
|
---
|
|
23
22
|
|
|
24
23
|
## 2.24.0 - 2023-08-03
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterportal/masterportalapi",
|
|
3
3
|
"author": "Implementierungspartnerschaft Masterportal <info@masterportal.org> (https://www.masterportal.org)",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.26.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Basic functions of the Masterportal as api",
|
|
7
7
|
"repository": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"core-js": "^3.32.0",
|
|
23
23
|
"dayjs": "^1.11.9",
|
|
24
|
-
"ol": "7.
|
|
24
|
+
"ol": "7.5.1",
|
|
25
25
|
"olcs": "^2.15.0",
|
|
26
26
|
"proj4": "^2.9.0",
|
|
27
27
|
"xml2js": "^0.6.2"
|
package/src/layer/tileset.js
CHANGED
|
@@ -14,7 +14,7 @@ function createTileSet (rawLayer) {
|
|
|
14
14
|
Object.assign(options, rawLayer.cesium3DTilesetOptions);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
return Promise.resolve(Cesium.Cesium3DTileset.fromUrl(url, options));
|
|
17
|
+
return Promise.resolve(Cesium.Cesium3DTileset.fromUrl(url, options));
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/**
|