@igo2/geo 19.0.0-next.4 → 19.0.0-next.5
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/fesm2022/igo2-geo.mjs +11 -9
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/package.json +5 -5
package/fesm2022/igo2-geo.mjs
CHANGED
|
@@ -10351,16 +10351,18 @@ class LayerItemComponent {
|
|
|
10351
10351
|
}
|
|
10352
10352
|
get visibilityTooltip() {
|
|
10353
10353
|
if (this.viewerOptions.mode !== 'selection' &&
|
|
10354
|
-
this.inResolutionRange$.getValue()
|
|
10355
|
-
return
|
|
10356
|
-
|
|
10357
|
-
|
|
10358
|
-
|
|
10354
|
+
!this.inResolutionRange$.getValue()) {
|
|
10355
|
+
return this.layer.visible
|
|
10356
|
+
? this.isDisabled
|
|
10357
|
+
? 'igo.geo.layer.notInResolution'
|
|
10358
|
+
: 'igo.geo.layer.group.hideChildren'
|
|
10359
|
+
: 'igo.geo.layer.showLayer';
|
|
10360
|
+
}
|
|
10361
|
+
return this.layer.visible
|
|
10362
|
+
? this.isDisabled
|
|
10359
10363
|
? 'igo.geo.layer.group.hideChildren'
|
|
10360
|
-
:
|
|
10361
|
-
|
|
10362
|
-
: 'igo.geo.layer.showLayer';
|
|
10363
|
-
}
|
|
10364
|
+
: 'igo.geo.layer.hideLayer'
|
|
10365
|
+
: 'igo.geo.layer.showLayer';
|
|
10364
10366
|
}
|
|
10365
10367
|
constructor(networkService) {
|
|
10366
10368
|
this.networkService = networkService;
|