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