@eeacms/volto-arcgis-block 0.1.28 → 0.1.29
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,8 +4,15 @@ 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.29](https://github.com/eea/volto-arcgis-block/compare/0.1.28...0.1.29)
|
|
8
|
+
|
|
9
|
+
- HandlingLevel fix [`#95`](https://github.com/eea/volto-arcgis-block/pull/95)
|
|
10
|
+
|
|
7
11
|
#### [0.1.28](https://github.com/eea/volto-arcgis-block/compare/0.1.27...0.1.28)
|
|
8
12
|
|
|
13
|
+
> 1 February 2022
|
|
14
|
+
|
|
15
|
+
- Develop [`#94`](https://github.com/eea/volto-arcgis-block/pull/94)
|
|
9
16
|
- Time slider visible [`#93`](https://github.com/eea/volto-arcgis-block/pull/93)
|
|
10
17
|
|
|
11
18
|
#### [0.1.27](https://github.com/eea/volto-arcgis-block/compare/0.1.26...0.1.27)
|
package/package.json
CHANGED
|
@@ -516,7 +516,7 @@ class MenuWidget extends React.Component {
|
|
|
516
516
|
var inheritedIndexDataset = inheritedIndex + '_' + datIndex;
|
|
517
517
|
var checkIndex = 'map_dataset_' + inheritedIndexDataset;
|
|
518
518
|
|
|
519
|
-
if (dataset.
|
|
519
|
+
if (dataset.HandlingLevel) {
|
|
520
520
|
this.layerGroups[dataset.DatasetId] = [];
|
|
521
521
|
}
|
|
522
522
|
for (var i in dataset.Layer) {
|
|
@@ -525,7 +525,7 @@ class MenuWidget extends React.Component {
|
|
|
525
525
|
dataset.Layer[i].LayerId + '_' + inheritedIndexDataset + '_' + i,
|
|
526
526
|
);
|
|
527
527
|
}
|
|
528
|
-
if (dataset.
|
|
528
|
+
if (dataset.HandlingLevel) {
|
|
529
529
|
this.layerGroups[dataset.DatasetId].push(dataset.Layer[i].LayerId);
|
|
530
530
|
}
|
|
531
531
|
layers.push(
|
|
@@ -537,7 +537,7 @@ class MenuWidget extends React.Component {
|
|
|
537
537
|
checkIndex,
|
|
538
538
|
dataset.IsTimeSeries,
|
|
539
539
|
layer_default,
|
|
540
|
-
dataset.
|
|
540
|
+
dataset.HandlingLevel,
|
|
541
541
|
),
|
|
542
542
|
);
|
|
543
543
|
index++;
|