@masterportal/masterportalapi 2.42.0 → 2.42.2
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 +11 -5
- package/package.json +5 -5
- package/src/layer/wmts.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,18 +3,24 @@
|
|
|
3
3
|
|
|
4
4
|
The [Semantic Versioning](https://semver.org/spec/v2.0.0.html) is used.
|
|
5
5
|
|
|
6
|
-
## Unreleased - in development
|
|
7
|
-
### __Breaking Changes__
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
## 2.42.2 - 2024-12-05
|
|
10
8
|
|
|
11
9
|
### Changed
|
|
10
|
+
-Revert Change, because of problems with Routing:
|
|
11
|
+
- The following packages have been updated:
|
|
12
|
+
- dependencies:
|
|
13
|
+
- ol: 9.2.4 to 10.2.1
|
|
14
|
+
- ol-mapbox-style: 12.2.1 to 12.3.5
|
|
15
|
+
- olcs: 2.20.0 to 2.22.1
|
|
16
|
+
- peerDependencies:
|
|
17
|
+
- cesium/engine: 9.2.0 to 12.0.1
|
|
12
18
|
|
|
13
|
-
### Deprecated
|
|
14
19
|
|
|
15
|
-
|
|
20
|
+
## 2.42.1 - 2024-11-28
|
|
16
21
|
|
|
17
22
|
### Fixed
|
|
23
|
+
- Issue #1275: Fixed layers without capabilitiesURL.
|
|
18
24
|
|
|
19
25
|
---
|
|
20
26
|
|
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.42.
|
|
4
|
+
"version": "2.42.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Basic functions of the Masterportal as api",
|
|
7
7
|
"repository": {
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"core-js": "^3.33.1",
|
|
23
23
|
"dayjs": "^1.11.10",
|
|
24
|
-
"ol": "
|
|
25
|
-
"ol-mapbox-style": "
|
|
26
|
-
"olcs": "
|
|
24
|
+
"ol": "9.2.4",
|
|
25
|
+
"ol-mapbox-style": "12.2.1",
|
|
26
|
+
"olcs": "2.20.0",
|
|
27
27
|
"proj4": "^2.10.0",
|
|
28
28
|
"xml2js": "^0.6.2"
|
|
29
29
|
},
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"util": "^0.12.5"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@cesium/engine": "^
|
|
59
|
+
"@cesium/engine": "^9.2.0"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": "^16.13.2 || ^18.12.0 || ^20.12.2",
|
package/src/layer/wmts.js
CHANGED
|
@@ -186,7 +186,7 @@ function createLayer (rawLayer, layerParams = {}) {
|
|
|
186
186
|
infoFormat: rawLayer.infoFormat
|
|
187
187
|
}, layerParams));
|
|
188
188
|
|
|
189
|
-
if (rawLayer.optionsFromCapabilities === undefined ||
|
|
189
|
+
if (rawLayer.optionsFromCapabilities === undefined || rawLayer.capabilitiesUrl === undefined) {
|
|
190
190
|
createLayerSourceByDefinitions(rawLayer, tileLayer);
|
|
191
191
|
}
|
|
192
192
|
else {
|