@regionerne/gis-komponent 0.0.107 → 0.0.108

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.
@@ -1314,14 +1314,14 @@ class KomponentSettingsHelperService {
1314
1314
  image: new CircleStyle({
1315
1315
  radius: 4,
1316
1316
  fill: new Fill({ color: fillColor })
1317
- }),
1318
- zIndex: 999
1317
+ })
1319
1318
  }));
1320
1319
  const source = new VectorSource({
1321
1320
  features: [feature],
1322
1321
  });
1323
1322
  const layer = new VectorLayer({
1324
1323
  source,
1324
+ zIndex: 999
1325
1325
  });
1326
1326
  // store reference for updates
1327
1327
  layer._cursorFeature = feature;
@@ -5771,7 +5771,6 @@ const POSITION_KEY = 'docSearchInfo';
5771
5771
  class DocumentSearchInfoComponent {
5772
5772
  _showDocumentInfoService = inject(ShowDocumentInfoService);
5773
5773
  _layoutService = inject(LayoutService);
5774
- _profileService = inject(ProfileService);
5775
5774
  profile;
5776
5775
  showPanel = false;
5777
5776
  collapsed = true;
@@ -6046,6 +6045,7 @@ class GisKomponentComponent {
6046
6045
  }
6047
6046
  ngOnDestroy() {
6048
6047
  this._profileService.setProfileVersionChanged(false);
6048
+ this._layoutService.mapSetSubject.next(false);
6049
6049
  }
6050
6050
  profileSelected(profileIdentifier) {
6051
6051
  this._profileService.getByIdentifier(profileIdentifier).subscribe({