@eeacms/volto-arcgis-block 0.1.445 → 0.1.446
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
CHANGED
|
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [0.1.446](https://github.com/eea/volto-arcgis-block/compare/0.1.445...0.1.446) - 7 May 2026
|
|
8
|
+
|
|
7
9
|
### [0.1.445](https://github.com/eea/volto-arcgis-block/compare/0.1.444...0.1.445) - 28 April 2026
|
|
8
10
|
|
|
9
11
|
### [0.1.444](https://github.com/eea/volto-arcgis-block/compare/0.1.443...0.1.444) - 17 April 2026
|
package/package.json
CHANGED
|
@@ -2306,9 +2306,12 @@ class MenuWidget extends React.Component {
|
|
|
2306
2306
|
return (url || '').replace(/^https?:\/\//i, '');
|
|
2307
2307
|
}
|
|
2308
2308
|
|
|
2309
|
-
getProxyBase() {
|
|
2310
|
-
|
|
2311
|
-
|
|
2309
|
+
getProxyBase = () => {
|
|
2310
|
+
const href = window.location.href || '';
|
|
2311
|
+
return href.replace('/en/map-viewer', '/ogcproxy/');
|
|
2312
|
+
// return 'https://clmsdemo.devel6cph.eea.europa.eu/ogcproxy/';
|
|
2313
|
+
// return 'https://land.copernicus.eu/ogcproxy/';
|
|
2314
|
+
};
|
|
2312
2315
|
|
|
2313
2316
|
buildProxiedUrl(url) {
|
|
2314
2317
|
if (!url) return url;
|
|
@@ -310,9 +310,10 @@ class UploadWidget extends React.Component {
|
|
|
310
310
|
};
|
|
311
311
|
|
|
312
312
|
getProxyBase = () => {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
return 'https://clmsdemo.devel6cph.eea.europa.eu/ogcproxy/';
|
|
313
|
+
const href = window.location.href || '';
|
|
314
|
+
return href.replace('/en/map-viewer', '/ogcproxy/');
|
|
315
|
+
// return 'https://clmsdemo.devel6cph.eea.europa.eu/ogcproxy/';
|
|
316
|
+
// return 'https://land.copernicus.eu/ogcproxy/';
|
|
316
317
|
};
|
|
317
318
|
|
|
318
319
|
buildProxiedUrl = (url) => {
|