@eeacms/volto-arcgis-block 0.1.199 → 0.1.201
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,14 @@ 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.201](https://github.com/eea/volto-arcgis-block/compare/0.1.200...0.1.201) - 21 September 2023
|
|
8
|
+
|
|
9
|
+
### [0.1.200](https://github.com/eea/volto-arcgis-block/compare/0.1.199...0.1.200) - 20 September 2023
|
|
10
|
+
|
|
11
|
+
#### :hammer_and_wrench: Others
|
|
12
|
+
|
|
13
|
+
- Update package.json [Urkorue - [`2e4cbe1`](https://github.com/eea/volto-arcgis-block/commit/2e4cbe1012b627d3f63f64f5ba5ba0a0f83f4e65)]
|
|
14
|
+
- CLMS-2486+CLMS-2603 (Bug): Use Cases Card Document Links fix + Basemap Copyright fix [Urkorue - [`1f54aa3`](https://github.com/eea/volto-arcgis-block/commit/1f54aa366e07b701f177fcf44e596a5b2b0280d9)]
|
|
7
15
|
### [0.1.199](https://github.com/eea/volto-arcgis-block/compare/0.1.198...0.1.199) - 18 September 2023
|
|
8
16
|
|
|
9
17
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -170,7 +170,8 @@ class BasemapWidget extends React.Component {
|
|
|
170
170
|
thumbnailUrl: ${url}.replace('{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}', '/${proj}/0/0/0'),
|
|
171
171
|
baseLayers: [
|
|
172
172
|
new WebTileLayer({
|
|
173
|
-
urlTemplate: ${url}.replace('{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}', '/${proj}/{z}/{x}/{y}')
|
|
173
|
+
urlTemplate: ${url}.replace('{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}', '/${proj}/{z}/{x}/{y}'),
|
|
174
|
+
copyright: '© <a href="https://www.openstreetmap.org/about" target="_blank">OpenStreetMap</a> (and) contributors, CC-BY-SA',
|
|
174
175
|
})
|
|
175
176
|
]
|
|
176
177
|
});
|
|
@@ -195,6 +196,8 @@ class BasemapWidget extends React.Component {
|
|
|
195
196
|
new WebTileLayer({
|
|
196
197
|
urlTemplate:
|
|
197
198
|
'https://gisco-services.ec.europa.eu/maps/tiles/OSMPositronComposite/EPSG3857/{z}/{x}/{y}.png',
|
|
199
|
+
copyright:
|
|
200
|
+
'© <a href="https://www.openstreetmap.org/about" target="_blank">OpenStreetMap</a> (and) contributors, CC-BY-SA',
|
|
198
201
|
}),
|
|
199
202
|
],
|
|
200
203
|
// referenceLayers: [
|
|
@@ -210,6 +213,8 @@ class BasemapWidget extends React.Component {
|
|
|
210
213
|
new WebTileLayer({
|
|
211
214
|
urlTemplate:
|
|
212
215
|
'https://gisco-services.ec.europa.eu/maps/tiles/OSMBlossomComposite/EPSG3857/{z}/{x}/{y}.png',
|
|
216
|
+
copyright:
|
|
217
|
+
'© <a href="https://www.openstreetmap.org/about" target="_blank">OpenStreetMap</a> (and) contributors, CC-BY-SA',
|
|
213
218
|
}),
|
|
214
219
|
],
|
|
215
220
|
// referenceLayers: [
|
|
@@ -225,6 +230,8 @@ class BasemapWidget extends React.Component {
|
|
|
225
230
|
new WebTileLayer({
|
|
226
231
|
urlTemplate:
|
|
227
232
|
'https://gisco-services.ec.europa.eu/maps/tiles/CountriesWorld/EPSG3857/{z}/{x}/{y}.png',
|
|
233
|
+
copyright:
|
|
234
|
+
'© <a href="https://www.openstreetmap.org/about" target="_blank">OpenStreetMap</a> (and) contributors, CC-BY-SA',
|
|
228
235
|
}),
|
|
229
236
|
],
|
|
230
237
|
// referenceLayers: [
|