geonetwork-ui 2.2.0-dev.177cac3b → 2.2.0-dev.2a6e8d6d
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/esm2022/libs/api/repository/src/lib/gn4/index.mjs +3 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +5 -4
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +106 -0
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +11 -3
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +76 -0
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +5 -4
- package/esm2022/libs/ui/elements/src/index.mjs +2 -1
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +3 -1
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +2 -2
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +29 -13
- package/esm2022/translations/de.json +99 -96
- package/esm2022/translations/en.json +19 -16
- package/esm2022/translations/es.json +3 -0
- package/esm2022/translations/fr.json +3 -0
- package/esm2022/translations/it.json +3 -0
- package/esm2022/translations/nl.json +3 -0
- package/esm2022/translations/pt.json +3 -0
- package/fesm2022/geonetwork-ui.mjs +351 -140
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/repository/src/lib/gn4/index.d.ts +2 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +1 -0
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +15 -2
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +22 -0
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +15 -13
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +20 -0
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -0
- package/libs/ui/elements/src/index.d.ts +1 -0
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +19 -7
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/package.json +3 -1
- package/src/libs/api/repository/src/lib/gn4/index.ts +2 -0
- package/src/libs/common/domain/src/lib/index.ts +2 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +1 -0
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +8 -5
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.css +0 -0
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +21 -0
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +107 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +5 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.css +0 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +39 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +83 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +3 -1
- package/src/libs/ui/elements/src/index.ts +1 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +4 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +52 -52
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +1 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.css +1 -1
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +1 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +34 -11
- package/translations/de.json +99 -96
- package/translations/en.json +19 -16
- package/translations/es.json +3 -0
- package/translations/fr.json +3 -0
- package/translations/it.json +3 -0
- package/translations/nl.json +3 -0
- package/translations/pt.json +3 -0
- package/translations/sk.json +3 -0
|
@@ -12,7 +12,7 @@ import { map as map$1, shareReplay, filter, tap as tap$1, startWith, switchMap a
|
|
|
12
12
|
import { marker } from '@biesbjerg/ngx-translate-extract-marker';
|
|
13
13
|
import * as i1$3 from '@angular/common';
|
|
14
14
|
import { CommonModule, NgOptimizedImage, NgForOf } from '@angular/common';
|
|
15
|
-
import { of, map as map$2, lastValueFrom, switchMap, combineLatest, takeLast, forkJoin, Subject, merge, throwError, BehaviorSubject, tap as tap$2, fromEvent, timer, from, Subscription, animationFrameScheduler, firstValueFrom, ReplaySubject, distinctUntilChanged as distinctUntilChanged$1, Observable, buffer, debounceTime as debounceTime$1, combineLatestWith, EMPTY, startWith as startWith$1, pairwise as pairwise$1 } from 'rxjs';
|
|
15
|
+
import { of, map as map$2, lastValueFrom, switchMap, combineLatest, takeLast, forkJoin, Subject, merge, throwError, BehaviorSubject, tap as tap$2, fromEvent, timer, from, Subscription, animationFrameScheduler, firstValueFrom, ReplaySubject, distinctUntilChanged as distinctUntilChanged$1, Observable, buffer, debounceTime as debounceTime$1, combineLatestWith, catchError as catchError$1, takeUntil, EMPTY, startWith as startWith$1, pairwise as pairwise$1 } from 'rxjs';
|
|
16
16
|
import { valid, coerce, satisfies, ltr } from 'semver';
|
|
17
17
|
import * as i1$2 from '@ngrx/store';
|
|
18
18
|
import { createAction, props, createReducer, on, createFeatureSelector, createSelector, select, StoreModule } from '@ngrx/store';
|
|
@@ -78,6 +78,8 @@ import * as i1$8 from '@ngrx/effects';
|
|
|
78
78
|
import { createEffect, ofType, EffectsModule } from '@ngrx/effects';
|
|
79
79
|
import tippy from 'tippy.js';
|
|
80
80
|
import { valid as valid$1 } from 'geojson-validation';
|
|
81
|
+
import { queryGeoadmin } from '@geospatial-sdk/geocoding';
|
|
82
|
+
import { Polygon } from 'ol/geom';
|
|
81
83
|
import { Chart, BarController, BarElement, CategoryScale, LinearScale, LineController, LineElement, PointElement, PieController, ArcElement, ScatterController, Tooltip, Colors, Legend } from 'chart.js';
|
|
82
84
|
import * as i4$1 from '@angular/cdk/scrolling';
|
|
83
85
|
import { ScrollingModule } from '@angular/cdk/scrolling';
|
|
@@ -16689,20 +16691,20 @@ var de = {
|
|
|
16689
16691
|
"chart.type.line": "Liniendiagramm",
|
|
16690
16692
|
"chart.type.lineSmooth": "Geglättes Liniendiagramm",
|
|
16691
16693
|
"chart.type.pie": "Kreisdiagramm",
|
|
16692
|
-
"dashboard.labels.mySpace": "",
|
|
16693
|
-
"dashboard.records.all": "",
|
|
16694
|
-
"dashboard.records.myDraft": "",
|
|
16695
|
-
"dashboard.records.myLibrary": "",
|
|
16696
|
-
"dashboard.records.myOrg": "",
|
|
16697
|
-
"dashboard.records.myRecords": "",
|
|
16698
|
-
"dashboard.records.noRecord": "",
|
|
16699
|
-
"dashboard.records.noUser": "",
|
|
16700
|
-
"dashboard.records.publishedRecords": "",
|
|
16701
|
-
"dashboard.records.search": "",
|
|
16702
|
-
"dashboard.records.userDetail": "",
|
|
16703
|
-
"dashboard.records.userEmail": "",
|
|
16704
|
-
"dashboard.records.username": "",
|
|
16705
|
-
"dashboard.records.users": "",
|
|
16694
|
+
"dashboard.labels.mySpace": "Mein Bereich",
|
|
16695
|
+
"dashboard.records.all": "Katalog",
|
|
16696
|
+
"dashboard.records.myDraft": "Meine Entwürfe",
|
|
16697
|
+
"dashboard.records.myLibrary": "Meine Bibliothek",
|
|
16698
|
+
"dashboard.records.myOrg": "Meine Organisation",
|
|
16699
|
+
"dashboard.records.myRecords": "Meine Datensätze",
|
|
16700
|
+
"dashboard.records.noRecord": "Kein Datensatz für diese Organisation",
|
|
16701
|
+
"dashboard.records.noUser": "Keine Benutzer für diese Organisation",
|
|
16702
|
+
"dashboard.records.publishedRecords": "{count, plural, =1{veröffentlichter Datensatz} other{veröffentlichte Datensätze}}",
|
|
16703
|
+
"dashboard.records.search": "Suche nach \"{searchText}\"",
|
|
16704
|
+
"dashboard.records.userDetail": "Name",
|
|
16705
|
+
"dashboard.records.userEmail": "E-Mail",
|
|
16706
|
+
"dashboard.records.username": "Benutzername",
|
|
16707
|
+
"dashboard.records.users": "{count, plural, =1{Benutzer} other{Benutzer}}",
|
|
16706
16708
|
"datafeeder.analysisProgressBar.illustration.fileFormatDetection": "Dateiformat-Erkennung",
|
|
16707
16709
|
"datafeeder.analysisProgressBar.illustration.gatheringDatasetInformation": "Sammeln von Datensatzinformationen",
|
|
16708
16710
|
"datafeeder.analysisProgressBar.illustration.samplingData": "Datenauswahl",
|
|
@@ -16716,7 +16718,7 @@ var de = {
|
|
|
16716
16718
|
"datafeeder.form.datepicker": "Wissen Sie, wann der Datensatz erstellt wurde?",
|
|
16717
16719
|
"datafeeder.form.description": "Beschreiben Sie abschließend den Prozess, der zur Erstellung des Datensatzes verwendet wurde",
|
|
16718
16720
|
"datafeeder.form.dropdown": "Für welche Skala wurde er erstellt?",
|
|
16719
|
-
"datafeeder.form.tags": "Wählen Sie einen oder mehrere
|
|
16721
|
+
"datafeeder.form.tags": "Wählen Sie einen oder mehrere Tage aus, die zu Ihrem Datensatz passen",
|
|
16720
16722
|
"datafeeder.form.title": "Geben Sie Ihrem Datensatz den besten Titel",
|
|
16721
16723
|
"datafeeder.formsPage.title": "Erzählen Sie uns mehr über Ihren Datensatz",
|
|
16722
16724
|
"datafeeder.month.april": "April",
|
|
@@ -16731,16 +16733,16 @@ var de = {
|
|
|
16731
16733
|
"datafeeder.month.november": "November",
|
|
16732
16734
|
"datafeeder.month.october": "Oktober",
|
|
16733
16735
|
"datafeeder.month.september": "September",
|
|
16734
|
-
"datafeeder.publish.hint": "Sie können diese Seite sicher verlassen. Sie werden benachrichtigt, wenn der Vorgang abgeschlossen ist",
|
|
16735
|
-
"datafeeder.publish.illustration.title": "Ein weiterer Datensatz zum Veröffentlichen?",
|
|
16736
|
+
"datafeeder.publish.hint": "Sie können diese Seite sicher verlassen. Sie werden benachrichtigt, wenn der Vorgang abgeschlossen ist.",
|
|
16737
|
+
"datafeeder.publish.illustration.title": "Ein weiterer Datensatz \n zum Veröffentlichen?",
|
|
16736
16738
|
"datafeeder.publish.subtitle": "Das Veröffentlichen kann einige Minuten dauern.",
|
|
16737
|
-
"datafeeder.publish.title": "Vielen Dank! Ihr Datensatz wird veröffentlicht",
|
|
16739
|
+
"datafeeder.publish.title": "Vielen Dank! \n Ihr Datensatz wird veröffentlicht",
|
|
16738
16740
|
"datafeeder.publish.upload": "Jetzt hochladen",
|
|
16739
16741
|
"datafeeder.publishSuccess.geonetworkRecord": "Metadatensatz",
|
|
16740
16742
|
"datafeeder.publishSuccess.illustration.title": "Erledigt, alles ist gut!",
|
|
16741
16743
|
"datafeeder.publishSuccess.mapViewer": "Kartenviewer",
|
|
16742
16744
|
"datafeeder.publishSuccess.subtitle": "Zeigen Sie Ihre Daten an in:",
|
|
16743
|
-
"datafeeder.publishSuccess.title": "Herzlichen Glückwunsch! Ihr Datensatz wurde veröffentlicht",
|
|
16745
|
+
"datafeeder.publishSuccess.title": "Herzlichen Glückwunsch! \n Ihr Datensatz wurde veröffentlicht",
|
|
16744
16746
|
"datafeeder.publishSuccess.uploadAnotherData": "Ein weiteren Datensatz hochladen",
|
|
16745
16747
|
"datafeeder.summarizePage.illustration": "Kein Fehler? Los geht's!",
|
|
16746
16748
|
"datafeeder.summarizePage.previous": "Zurück",
|
|
@@ -16748,11 +16750,11 @@ var de = {
|
|
|
16748
16750
|
"datafeeder.summarizePage.title": "Sie sind fast fertig...",
|
|
16749
16751
|
"datafeeder.upload.acceptedFormats": "Akzeptierte Dateiformate:",
|
|
16750
16752
|
"datafeeder.upload.checkboxLabel": "Ich besitze die Rechte zur Veröffentlichung dieses Datensatzes",
|
|
16751
|
-
"datafeeder.upload.error.subtitle.analysis": "Überprüfen Sie, ob die Datei einen gültigen
|
|
16753
|
+
"datafeeder.upload.error.subtitle.analysis": "Überprüfen Sie, ob die Datei einen gültigen geografischen Datensatz enthält",
|
|
16752
16754
|
"datafeeder.upload.error.subtitle.cantOpenFile": "Bitte überprüfen Sie, ob die Datei gültig ist",
|
|
16753
16755
|
"datafeeder.upload.error.subtitle.fileFormat": "Beachten Sie: Nur SHP-Dateien",
|
|
16754
|
-
"datafeeder.upload.error.subtitle.fileSize": "Beachten Sie:
|
|
16755
|
-
"datafeeder.upload.error.title.analysis": "Fehler
|
|
16756
|
+
"datafeeder.upload.error.subtitle.fileSize": "Beachten Sie: Maximale Dateigröße {size} MB",
|
|
16757
|
+
"datafeeder.upload.error.title.analysis": "Fehler während der Datensatzanalyse",
|
|
16756
16758
|
"datafeeder.upload.error.title.cantOpenFile": "Fehler beim Öffnen der Datei",
|
|
16757
16759
|
"datafeeder.upload.error.title.fileFormat": "Das ausgewählte Dateiformat wird nicht unterstützt",
|
|
16758
16760
|
"datafeeder.upload.error.title.fileHasntSelected": "Keine Datei ausgewählt",
|
|
@@ -16760,19 +16762,19 @@ var de = {
|
|
|
16760
16762
|
"datafeeder.upload.error.title.noRightsToSendData": "Sie dürfen diesen Datensatz nicht veröffentlichen",
|
|
16761
16763
|
"datafeeder.upload.illustration.enrichment": "Anreicherung",
|
|
16762
16764
|
"datafeeder.upload.illustration.import": "Import",
|
|
16763
|
-
"datafeeder.upload.illustration.title": "Das Hinzufügen von Daten war noch nie
|
|
16765
|
+
"datafeeder.upload.illustration.title": "Das Hinzufügen von Daten \n war noch nie so einfach",
|
|
16764
16766
|
"datafeeder.upload.illustration.validation": "Validierung",
|
|
16765
|
-
"datafeeder.upload.illustration.verification": "
|
|
16767
|
+
"datafeeder.upload.illustration.verification": "Überprüfung",
|
|
16766
16768
|
"datafeeder.upload.inputLabel": "Importieren Sie Ihre Datei",
|
|
16767
16769
|
"datafeeder.upload.maxFileSize": "Maximale Dateigröße beträgt {size} MB",
|
|
16768
16770
|
"datafeeder.upload.title": "Laden Sie Ihren Datensatz hoch",
|
|
16769
16771
|
"datafeeder.upload.uploadButton": "Hochladen",
|
|
16770
|
-
"datafeeder.validation.encoding": "
|
|
16772
|
+
"datafeeder.validation.encoding": "Codierung",
|
|
16771
16773
|
"datafeeder.validation.extent.title": "Hier ist der Datensatzumfang",
|
|
16772
16774
|
"datafeeder.validation.extent.title.unknown": "Das Projektionssystem ist unbekannt",
|
|
16773
16775
|
"datafeeder.validation.projection": "Raumbezugssystem:",
|
|
16774
|
-
"datafeeder.validation.projection.unknown": "Wählen Sie ein Raumbezugssystem",
|
|
16775
|
-
"datafeeder.validation.sample.title": "Und eine
|
|
16776
|
+
"datafeeder.validation.projection.unknown": "Wählen Sie ein Raumbezugssystem aus",
|
|
16777
|
+
"datafeeder.validation.sample.title": "Und eine Beispielentität aus dem Datensatz",
|
|
16776
16778
|
"datafeeder.wizard.emptyRequiredValuesMessage": "Bitte füllen Sie die obligatorischen Felder aus",
|
|
16777
16779
|
"datafeeder.wizardSummarize.createdAt": "Erstellt am",
|
|
16778
16780
|
"datafeeder.wizardSummarize.scale": "Maßstab",
|
|
@@ -16782,20 +16784,20 @@ var de = {
|
|
|
16782
16784
|
"datahub.header.news": "Startseite",
|
|
16783
16785
|
"datahub.header.organisations": "Organisationen",
|
|
16784
16786
|
"datahub.header.popularRecords": "Die beliebtesten",
|
|
16785
|
-
"datahub.header.title.html": "<div class=\"text-white\">Entdecken Sie offene<br> Daten
|
|
16786
|
-
"datahub.news.contact.contactus": "",
|
|
16787
|
-
"datahub.news.contact.html": "",
|
|
16788
|
-
"datahub.news.contact.title": "",
|
|
16787
|
+
"datahub.header.title.html": "<div class=\"text-white\">Entdecken Sie offene<br> Daten meiner Organisation</div>",
|
|
16788
|
+
"datahub.news.contact.contactus": "Kontaktieren Sie uns",
|
|
16789
|
+
"datahub.news.contact.html": "<p>Brauchen Sie Daten, die derzeit nicht auf der Plattform vorhanden sind?</p><p>Unsere Teams stehen Ihnen zur Verfügung.</p>",
|
|
16790
|
+
"datahub.news.contact.title": "Ein spezielles Bedürfnis?",
|
|
16789
16791
|
"datahub.news.feed": "Nachrichtenfeed",
|
|
16790
16792
|
"datahub.news.figures": "Indikatoren",
|
|
16791
|
-
"datahub.record.addToFavorites": "",
|
|
16792
|
-
"datahub.search.back": "Zurück
|
|
16793
|
+
"datahub.record.addToFavorites": "Zu Favoriten hinzufügen",
|
|
16794
|
+
"datahub.search.back": "Zurück",
|
|
16793
16795
|
"datahub.search.filter.all": "Alle",
|
|
16794
|
-
"datahub.search.filter.generatedByWfs": "Generiert durch API",
|
|
16796
|
+
"datahub.search.filter.generatedByWfs": "Generiert durch eine API",
|
|
16795
16797
|
"datahub.search.filter.others": "Andere",
|
|
16796
16798
|
"dataset.error.http": "Die Daten konnten aufgrund eines HTTP-Fehlers nicht geladen werden: \"{ info }\"",
|
|
16797
16799
|
"dataset.error.network": "Die Daten konnten aufgrund eines Netzwerkfehlers oder CORS-Beschränkungen nicht geladen werden: \"{ info }\"",
|
|
16798
|
-
"dataset.error.parse": "Die Daten wurden geladen, konnten aber nicht
|
|
16800
|
+
"dataset.error.parse": "Die Daten wurden geladen, konnten aber nicht gelesen werden: \"{ info }\"",
|
|
16799
16801
|
"dataset.error.unknown": "Die Daten können nicht angezeigt werden: \"{ info }\"",
|
|
16800
16802
|
"dataset.error.unsupportedType": "Der folgende Inhaltstyp wird nicht unterstützt: \"{ info }\"",
|
|
16801
16803
|
"domain.record.status.completed": "Abgeschlossen",
|
|
@@ -16803,18 +16805,18 @@ var de = {
|
|
|
16803
16805
|
"domain.record.status.ongoing": "Kontinuierliche Aktualisierung",
|
|
16804
16806
|
"domain.record.status.removed": "Entfernt",
|
|
16805
16807
|
"domain.record.status.under_development": "In Erstellung",
|
|
16806
|
-
"domain.record.updateFrequency.asNeeded": "
|
|
16807
|
-
"domain.record.updateFrequency.continual": "
|
|
16808
|
+
"domain.record.updateFrequency.asNeeded": "Nach Bedarf",
|
|
16809
|
+
"domain.record.updateFrequency.continual": "Fortlaufend",
|
|
16808
16810
|
"domain.record.updateFrequency.day": "{count, plural, =0{0} one{Ein} other{{count}}} mal am Tag",
|
|
16809
|
-
"domain.record.updateFrequency.irregular": "
|
|
16811
|
+
"domain.record.updateFrequency.irregular": "Unregelmäßig",
|
|
16810
16812
|
"domain.record.updateFrequency.month": "{count, plural, =0{0} one{Ein} other{{count}}} mal im Monat",
|
|
16811
16813
|
"domain.record.updateFrequency.notPlanned": "Nicht geplant",
|
|
16812
|
-
"domain.record.updateFrequency.periodic": "
|
|
16814
|
+
"domain.record.updateFrequency.periodic": "Regelmäßig",
|
|
16813
16815
|
"domain.record.updateFrequency.unknown": "Unbekannt",
|
|
16814
16816
|
"domain.record.updateFrequency.week": "{count, plural, =0{0} one{Ein} other{{count}}} mal in der Woche",
|
|
16815
16817
|
"domain.record.updateFrequency.year": "{count, plural, =0{0} one{Ein} other{{count}}} mal im Jahr",
|
|
16816
16818
|
"downloads.format.unknown": "unbekannt",
|
|
16817
|
-
"downloads.wfs.featuretype.not.found": "
|
|
16819
|
+
"downloads.wfs.featuretype.not.found": "Der Layer wurde nicht gefunden",
|
|
16818
16820
|
dropFile: dropFile$6,
|
|
16819
16821
|
"externalviewer.dataset.unnamed": "Datensatz aus dem Datahub",
|
|
16820
16822
|
"facets.block.title.OrgForResource": "Organisation",
|
|
@@ -16849,15 +16851,18 @@ var de = {
|
|
|
16849
16851
|
"map.add.layer.file": "Aus einer Datei",
|
|
16850
16852
|
"map.add.layer.wfs": "Aus WFS",
|
|
16851
16853
|
"map.add.layer.wms": "Aus WMS",
|
|
16852
|
-
"map.
|
|
16853
|
-
"map.
|
|
16854
|
+
"map.addFromFile.placeholder": "Klicke hier oder ziehe eine Datei herein",
|
|
16855
|
+
"map.geocoding.placeholder": "",
|
|
16856
|
+
"map.help.addFromFile": "Klicke oder ziehe eine Datei herein um eine Karte hinzuzufügen (momentan wird nur das GeoJSON-Format unterstützt).",
|
|
16857
|
+
"map.layer.add": "Hinzufügen",
|
|
16858
|
+
"map.layers.available": "Verfügbare Layer",
|
|
16854
16859
|
"map.layers.list": "Ebenen",
|
|
16855
16860
|
"map.loading.data": "Kartendaten werden geladen...",
|
|
16856
|
-
"map.loading.service": "",
|
|
16861
|
+
"map.loading.service": "Dienst wird geladen...",
|
|
16857
16862
|
"map.navigation.message": "Bitte verwenden Sie STRG + Maus (oder zwei Finger auf einem Mobilgerät), um die Karte zu navigieren",
|
|
16858
16863
|
"map.select.layer": "Datenquelle",
|
|
16859
|
-
"map.wfs.urlInput.hint": "",
|
|
16860
|
-
"map.wms.urlInput.hint": "",
|
|
16864
|
+
"map.wfs.urlInput.hint": "Geben Sie die WFS URL ein",
|
|
16865
|
+
"map.wms.urlInput.hint": "Geben Sie die WMS URL ein",
|
|
16861
16866
|
"multiselect.filter.placeholder": "Suche",
|
|
16862
16867
|
"nav.back": "Zurück",
|
|
16863
16868
|
next: next$6,
|
|
@@ -16873,61 +16878,61 @@ var de = {
|
|
|
16873
16878
|
"pagination.pageOf": "von",
|
|
16874
16879
|
previous: previous$6,
|
|
16875
16880
|
"record.action.download": "Herunterladen",
|
|
16876
|
-
"record.action.view": "
|
|
16881
|
+
"record.action.view": "Anzeigen",
|
|
16877
16882
|
"record.externalViewer.open": "In externem Kartenviewer öffnen",
|
|
16878
16883
|
"record.metadata.about": "Beschreibung",
|
|
16879
16884
|
"record.metadata.api": "API",
|
|
16880
|
-
"record.metadata.api.form.closeButton": "",
|
|
16881
|
-
"record.metadata.api.form.closeForm": "",
|
|
16882
|
-
"record.metadata.api.form.create": "",
|
|
16883
|
-
"record.metadata.api.form.customUrl": "",
|
|
16884
|
-
"record.metadata.api.form.limit": "",
|
|
16885
|
-
"record.metadata.api.form.limit.all": "",
|
|
16886
|
-
"record.metadata.api.form.offset": "",
|
|
16887
|
-
"record.metadata.api.form.openForm": "",
|
|
16888
|
-
"record.metadata.api.form.reset": "",
|
|
16889
|
-
"record.metadata.api.form.title": "",
|
|
16890
|
-
"record.metadata.api.form.type": "",
|
|
16891
|
-
"record.metadata.author": "",
|
|
16885
|
+
"record.metadata.api.form.closeButton": "Schließen",
|
|
16886
|
+
"record.metadata.api.form.closeForm": "Formular schließen",
|
|
16887
|
+
"record.metadata.api.form.create": "Ihre Anfrage erstellen",
|
|
16888
|
+
"record.metadata.api.form.customUrl": "Benutzerdefinierte URL",
|
|
16889
|
+
"record.metadata.api.form.limit": "Anzahl der Datensätze",
|
|
16890
|
+
"record.metadata.api.form.limit.all": "Alle",
|
|
16891
|
+
"record.metadata.api.form.offset": "Anzahl des ersten Datensatzes",
|
|
16892
|
+
"record.metadata.api.form.openForm": "Formular öffnen",
|
|
16893
|
+
"record.metadata.api.form.reset": "Zurücksetzen",
|
|
16894
|
+
"record.metadata.api.form.title": "Benutzerdefinierte URL generieren",
|
|
16895
|
+
"record.metadata.api.form.type": "Ausgabeformat",
|
|
16896
|
+
"record.metadata.author": "Autor",
|
|
16892
16897
|
"record.metadata.catalog": "Katalog",
|
|
16893
16898
|
"record.metadata.contact": "Kontakt",
|
|
16894
16899
|
"record.metadata.createdOn": "Erstellt am",
|
|
16895
16900
|
"record.metadata.details": "Technische Informationen",
|
|
16896
16901
|
"record.metadata.download": "Downloads",
|
|
16897
|
-
"record.metadata.formats": "",
|
|
16902
|
+
"record.metadata.formats": "Formate",
|
|
16898
16903
|
"record.metadata.isOpenData": "Open Data",
|
|
16899
16904
|
"record.metadata.keywords": "Stichworte",
|
|
16900
|
-
"record.metadata.lastUpdate": "",
|
|
16905
|
+
"record.metadata.lastUpdate": "Zuletzt aktualisiert am",
|
|
16901
16906
|
"record.metadata.links": "Links",
|
|
16902
|
-
"record.metadata.noUsage": "Für diesen Datensatz sind keine
|
|
16907
|
+
"record.metadata.noUsage": "Für diesen Datensatz sind keine Nutzungsbedingungen angegeben.",
|
|
16903
16908
|
"record.metadata.origin": "Über die Daten",
|
|
16904
16909
|
"record.metadata.owner": "",
|
|
16905
16910
|
"record.metadata.preview": "Vorschau",
|
|
16906
16911
|
"record.metadata.publications": "Veröffentlichungen",
|
|
16907
|
-
"record.metadata.quality": "",
|
|
16908
|
-
"record.metadata.quality.contact.failed": "",
|
|
16909
|
-
"record.metadata.quality.contact.success": "",
|
|
16910
|
-
"record.metadata.quality.description.failed": "",
|
|
16911
|
-
"record.metadata.quality.description.success": "",
|
|
16912
|
-
"record.metadata.quality.details": "",
|
|
16913
|
-
"record.metadata.quality.keywords.failed": "",
|
|
16914
|
-
"record.metadata.quality.keywords.success": "",
|
|
16915
|
-
"record.metadata.quality.legalConstraints.failed": "",
|
|
16916
|
-
"record.metadata.quality.legalConstraints.success": "",
|
|
16917
|
-
"record.metadata.quality.organisation.failed": "",
|
|
16918
|
-
"record.metadata.quality.organisation.success": "",
|
|
16919
|
-
"record.metadata.quality.title.failed": "",
|
|
16920
|
-
"record.metadata.quality.title.success": "",
|
|
16921
|
-
"record.metadata.quality.topic.failed": "",
|
|
16922
|
-
"record.metadata.quality.topic.success": "",
|
|
16923
|
-
"record.metadata.quality.updateFrequency.failed": "",
|
|
16924
|
-
"record.metadata.quality.updateFrequency.success": "",
|
|
16912
|
+
"record.metadata.quality": "Metadatenqualität",
|
|
16913
|
+
"record.metadata.quality.contact.failed": "Kontakt nicht angegeben",
|
|
16914
|
+
"record.metadata.quality.contact.success": "Kontakt angegeben",
|
|
16915
|
+
"record.metadata.quality.description.failed": "Beschreibung nicht angegeben",
|
|
16916
|
+
"record.metadata.quality.description.success": "Beschreibung angegeben",
|
|
16917
|
+
"record.metadata.quality.details": "Details",
|
|
16918
|
+
"record.metadata.quality.keywords.failed": "Schlagwörter nicht angegeben",
|
|
16919
|
+
"record.metadata.quality.keywords.success": "Schlagwörter angegeben",
|
|
16920
|
+
"record.metadata.quality.legalConstraints.failed": "Rechtliche Beschränkungen nicht angegeben",
|
|
16921
|
+
"record.metadata.quality.legalConstraints.success": "Rechtliche Beschränkungen angegeben",
|
|
16922
|
+
"record.metadata.quality.organisation.failed": "Organisation nicht angegeben",
|
|
16923
|
+
"record.metadata.quality.organisation.success": "Organisation angegeben",
|
|
16924
|
+
"record.metadata.quality.title.failed": "Titel nicht angegeben",
|
|
16925
|
+
"record.metadata.quality.title.success": "Titel angegeben",
|
|
16926
|
+
"record.metadata.quality.topic.failed": "Thema nicht angegeben",
|
|
16927
|
+
"record.metadata.quality.topic.success": "Thema angegeben",
|
|
16928
|
+
"record.metadata.quality.updateFrequency.failed": "Aktualisierungsfrequenz nicht angegeben",
|
|
16929
|
+
"record.metadata.quality.updateFrequency.success": "Aktualisierungsfrequenz angegeben",
|
|
16925
16930
|
"record.metadata.related": "Ähnliche Datensätze",
|
|
16926
|
-
"record.metadata.sheet": "Weitere Informationen
|
|
16927
|
-
"record.metadata.themes": "",
|
|
16931
|
+
"record.metadata.sheet": "Weitere Informationen verfügbar unter:",
|
|
16932
|
+
"record.metadata.themes": "Kategorien",
|
|
16928
16933
|
"record.metadata.title": "Titel",
|
|
16929
|
-
"record.metadata.type": "",
|
|
16930
|
-
"record.metadata.uniqueId": "",
|
|
16934
|
+
"record.metadata.type": "Geographischer Datensatz",
|
|
16935
|
+
"record.metadata.uniqueId": "Eindeutige Kennung",
|
|
16931
16936
|
"record.metadata.updateFrequency": "Aktualisierungsfrequenz der Daten",
|
|
16932
16937
|
"record.metadata.updateStatus": "Aktualisierungsstatus der Daten",
|
|
16933
16938
|
"record.metadata.updatedOn": "Letzte Aktualisierung der Dateninformationen",
|
|
@@ -16939,23 +16944,23 @@ var de = {
|
|
|
16939
16944
|
"record.was.created.time": "erstellte diesen Datensatz {time}",
|
|
16940
16945
|
records: records$6,
|
|
16941
16946
|
"results.layout.selectOne": "Layout auswählen",
|
|
16942
|
-
"results.records.hits.displayedOn": "{displayed, plural, =0{Kein Datensatz.} one{1 Datensatz} other{{displayed} Datensätze }} {hits, plural, other{
|
|
16943
|
-
"results.records.hits.empty.help.html": "Vorschläge: <ul class='list-disc list-inside'><li>Versuchen Sie
|
|
16947
|
+
"results.records.hits.displayedOn": "{displayed, plural, =0{Kein Datensatz.} one{1 Datensatz} other{{displayed} Datensätze }} {hits, plural, other{angezeigt von {hits} insgesamt.}}",
|
|
16948
|
+
"results.records.hits.empty.help.html": "Vorschläge: <ul class='list-disc list-inside'><li>Versuchen Sie es mit anderen Worten</li><li>Beschränken Sie die Suchwörter</li></ul>",
|
|
16944
16949
|
"results.records.hits.found": "{hits, plural, =0{Keine Dokumente entsprechen der angegebenen Suche.} one{1 Datensatz gefunden.} other{{hits} Datensätze gefunden.}}",
|
|
16945
|
-
"results.records.hits.selected": "",
|
|
16950
|
+
"results.records.hits.selected": "{ amount } ausgewählt",
|
|
16946
16951
|
"results.showMore": "Mehr Ergebnisse anzeigen...",
|
|
16947
|
-
"results.sortBy.dateStamp": "
|
|
16952
|
+
"results.sortBy.dateStamp": "Neueste",
|
|
16948
16953
|
"results.sortBy.popularity": "Beliebtheit",
|
|
16949
|
-
"results.sortBy.qualityScore": "",
|
|
16954
|
+
"results.sortBy.qualityScore": "Qualitätsbewertung",
|
|
16950
16955
|
"results.sortBy.relevancy": "Relevanz",
|
|
16951
16956
|
"search.autocomplete.error": "Vorschläge konnten nicht abgerufen werden:",
|
|
16952
16957
|
"search.error.couldNotReachApi": "Die API konnte nicht erreicht werden",
|
|
16953
|
-
"search.error.receivedError": "Ein Fehler
|
|
16958
|
+
"search.error.receivedError": "Ein Fehler ist aufgetreten",
|
|
16954
16959
|
"search.error.recordNotFound": "Der Datensatz mit der Kennung \"{ id }\" konnte nicht gefunden werden.",
|
|
16955
|
-
"search.field.any.placeholder": "Suche
|
|
16960
|
+
"search.field.any.placeholder": "Suche Datensätze ...",
|
|
16956
16961
|
"search.field.sortBy": "Sortieren nach:",
|
|
16957
16962
|
"search.filters.clear": "Zurücksetzen",
|
|
16958
|
-
"search.filters.contact": "
|
|
16963
|
+
"search.filters.contact": "Kontakte",
|
|
16959
16964
|
"search.filters.format": "Formate",
|
|
16960
16965
|
"search.filters.inspireKeyword": "INSPIRE-Schlüsselwort",
|
|
16961
16966
|
"search.filters.isSpatial": "Ist räumliche Daten",
|
|
@@ -16973,13 +16978,13 @@ var de = {
|
|
|
16973
16978
|
"search.filters.license.unknown": "Unbekannt oder nicht vorhanden",
|
|
16974
16979
|
"search.filters.maximize": "Erweitern",
|
|
16975
16980
|
"search.filters.minimize": "Minimieren",
|
|
16976
|
-
"search.filters.myRecords": "",
|
|
16977
|
-
"search.filters.myRecordsHelp": "",
|
|
16978
|
-
"search.filters.otherRecords": "",
|
|
16981
|
+
"search.filters.myRecords": "Nur meine Datensätze anzeigen",
|
|
16982
|
+
"search.filters.myRecordsHelp": "Wenn dies aktiviert ist, werden nur von mir erstellte Datensätze angezeigt; Datensätze, die von anderen erstellt wurden, werden nicht angezeigt.",
|
|
16983
|
+
"search.filters.otherRecords": "Datensätze von einer anderen Person anzeigen",
|
|
16979
16984
|
"search.filters.publicationYear": "Veröffentlichungsjahr",
|
|
16980
16985
|
"search.filters.publisher": "Organisationen",
|
|
16981
|
-
"search.filters.representationType": "",
|
|
16982
|
-
"search.filters.resourceType": "",
|
|
16986
|
+
"search.filters.representationType": "Repräsentationstyp",
|
|
16987
|
+
"search.filters.resourceType": "Ressourcentyp",
|
|
16983
16988
|
"search.filters.standard": "Standard",
|
|
16984
16989
|
"search.filters.title": "Ergebnisse filtern",
|
|
16985
16990
|
"search.filters.topic": "Thema",
|
|
@@ -17185,6 +17190,9 @@ var en = {
|
|
|
17185
17190
|
"map.add.layer.file": "From a file",
|
|
17186
17191
|
"map.add.layer.wfs": "From WFS",
|
|
17187
17192
|
"map.add.layer.wms": "From WMS",
|
|
17193
|
+
"map.addFromFile.placeholder": "Click or drop a file here",
|
|
17194
|
+
"map.geocoding.placeholder": "Search for a place",
|
|
17195
|
+
"map.help.addFromFile": "Click or drag and drop a file to add to the map (currently supports GeoJSON format only).",
|
|
17188
17196
|
"map.layer.add": "Add",
|
|
17189
17197
|
"map.layers.available": "Available Layers",
|
|
17190
17198
|
"map.layers.list": "Layers",
|
|
@@ -17241,23 +17249,23 @@ var en = {
|
|
|
17241
17249
|
"record.metadata.preview": "Preview",
|
|
17242
17250
|
"record.metadata.publications": "publications",
|
|
17243
17251
|
"record.metadata.quality": "Metadata Quality",
|
|
17244
|
-
"record.metadata.quality.contact.failed": "Contact is not
|
|
17245
|
-
"record.metadata.quality.contact.success": "Contact is
|
|
17246
|
-
"record.metadata.quality.description.failed": "Description is not
|
|
17247
|
-
"record.metadata.quality.description.success": "Description is
|
|
17252
|
+
"record.metadata.quality.contact.failed": "Contact is not specified",
|
|
17253
|
+
"record.metadata.quality.contact.success": "Contact is specified",
|
|
17254
|
+
"record.metadata.quality.description.failed": "Description is not specified",
|
|
17255
|
+
"record.metadata.quality.description.success": "Description is specified",
|
|
17248
17256
|
"record.metadata.quality.details": "Details",
|
|
17249
|
-
"record.metadata.quality.keywords.failed": "Keywords are not
|
|
17250
|
-
"record.metadata.quality.keywords.success": "Keywords are
|
|
17251
|
-
"record.metadata.quality.legalConstraints.failed": "Legal constraints are not
|
|
17252
|
-
"record.metadata.quality.legalConstraints.success": "Legal constraints are
|
|
17253
|
-
"record.metadata.quality.organisation.failed": "Organisation is not
|
|
17254
|
-
"record.metadata.quality.organisation.success": "Organisation is
|
|
17255
|
-
"record.metadata.quality.title.failed": "Title is not
|
|
17256
|
-
"record.metadata.quality.title.success": "Title is
|
|
17257
|
-
"record.metadata.quality.topic.failed": "Topic is not
|
|
17258
|
-
"record.metadata.quality.topic.success": "Topic is
|
|
17259
|
-
"record.metadata.quality.updateFrequency.failed": "Update frequency is not
|
|
17260
|
-
"record.metadata.quality.updateFrequency.success": "Update frequency is
|
|
17257
|
+
"record.metadata.quality.keywords.failed": "Keywords are not specified",
|
|
17258
|
+
"record.metadata.quality.keywords.success": "Keywords are specified",
|
|
17259
|
+
"record.metadata.quality.legalConstraints.failed": "Legal constraints are not specified",
|
|
17260
|
+
"record.metadata.quality.legalConstraints.success": "Legal constraints are specified",
|
|
17261
|
+
"record.metadata.quality.organisation.failed": "Organisation is not specified",
|
|
17262
|
+
"record.metadata.quality.organisation.success": "Organisation is specified",
|
|
17263
|
+
"record.metadata.quality.title.failed": "Title is not specified",
|
|
17264
|
+
"record.metadata.quality.title.success": "Title is specified",
|
|
17265
|
+
"record.metadata.quality.topic.failed": "Topic is not specified",
|
|
17266
|
+
"record.metadata.quality.topic.success": "Topic is specified",
|
|
17267
|
+
"record.metadata.quality.updateFrequency.failed": "Update frequency is not specified",
|
|
17268
|
+
"record.metadata.quality.updateFrequency.success": "Update frequency is specified",
|
|
17261
17269
|
"record.metadata.related": "Related records",
|
|
17262
17270
|
"record.metadata.sheet": "Original metadata",
|
|
17263
17271
|
"record.metadata.themes": "Categories",
|
|
@@ -17521,6 +17529,9 @@ var es = {
|
|
|
17521
17529
|
"map.add.layer.file": "",
|
|
17522
17530
|
"map.add.layer.wfs": "",
|
|
17523
17531
|
"map.add.layer.wms": "",
|
|
17532
|
+
"map.addFromFile.placeholder": "",
|
|
17533
|
+
"map.geocoding.placeholder": "",
|
|
17534
|
+
"map.help.addFromFile": "",
|
|
17524
17535
|
"map.layer.add": "",
|
|
17525
17536
|
"map.layers.available": "",
|
|
17526
17537
|
"map.layers.list": "",
|
|
@@ -17857,6 +17868,9 @@ var fr = {
|
|
|
17857
17868
|
"map.add.layer.file": "",
|
|
17858
17869
|
"map.add.layer.wfs": "",
|
|
17859
17870
|
"map.add.layer.wms": "",
|
|
17871
|
+
"map.addFromFile.placeholder": "",
|
|
17872
|
+
"map.geocoding.placeholder": "",
|
|
17873
|
+
"map.help.addFromFile": "",
|
|
17860
17874
|
"map.layer.add": "",
|
|
17861
17875
|
"map.layers.available": "",
|
|
17862
17876
|
"map.layers.list": "",
|
|
@@ -18193,6 +18207,9 @@ var it = {
|
|
|
18193
18207
|
"map.add.layer.file": "Da un file",
|
|
18194
18208
|
"map.add.layer.wfs": "Da un WFS",
|
|
18195
18209
|
"map.add.layer.wms": "Da un WMS",
|
|
18210
|
+
"map.addFromFile.placeholder": "",
|
|
18211
|
+
"map.geocoding.placeholder": "",
|
|
18212
|
+
"map.help.addFromFile": "",
|
|
18196
18213
|
"map.layer.add": "",
|
|
18197
18214
|
"map.layers.available": "",
|
|
18198
18215
|
"map.layers.list": "Layers",
|
|
@@ -18529,6 +18546,9 @@ var nl = {
|
|
|
18529
18546
|
"map.add.layer.file": "",
|
|
18530
18547
|
"map.add.layer.wfs": "",
|
|
18531
18548
|
"map.add.layer.wms": "",
|
|
18549
|
+
"map.addFromFile.placeholder": "",
|
|
18550
|
+
"map.geocoding.placeholder": "",
|
|
18551
|
+
"map.help.addFromFile": "",
|
|
18532
18552
|
"map.layer.add": "",
|
|
18533
18553
|
"map.layers.available": "",
|
|
18534
18554
|
"map.layers.list": "",
|
|
@@ -18865,6 +18885,9 @@ var pt = {
|
|
|
18865
18885
|
"map.add.layer.file": "",
|
|
18866
18886
|
"map.add.layer.wfs": "",
|
|
18867
18887
|
"map.add.layer.wms": "",
|
|
18888
|
+
"map.addFromFile.placeholder": "",
|
|
18889
|
+
"map.geocoding.placeholder": "",
|
|
18890
|
+
"map.help.addFromFile": "",
|
|
18868
18891
|
"map.layer.add": "",
|
|
18869
18892
|
"map.layers.available": "",
|
|
18870
18893
|
"map.layers.list": "",
|
|
@@ -21101,9 +21124,15 @@ const FORMATS = {
|
|
|
21101
21124
|
color: '#328556',
|
|
21102
21125
|
mimeTypes: ['x-gis/x-shapefile'],
|
|
21103
21126
|
},
|
|
21127
|
+
gml: {
|
|
21128
|
+
extensions: ['gml'],
|
|
21129
|
+
priority: 5,
|
|
21130
|
+
color: '#c92bce',
|
|
21131
|
+
mimeTypes: ['application/gml+xml', 'text/xml; subtype=gml'],
|
|
21132
|
+
},
|
|
21104
21133
|
kml: {
|
|
21105
21134
|
extensions: ['kml', 'kmz'],
|
|
21106
|
-
priority:
|
|
21135
|
+
priority: 6,
|
|
21107
21136
|
color: '#348009',
|
|
21108
21137
|
mimeTypes: [
|
|
21109
21138
|
'application/vnd.google-earth.kml+xml',
|
|
@@ -21112,34 +21141,40 @@ const FORMATS = {
|
|
|
21112
21141
|
},
|
|
21113
21142
|
gpkg: {
|
|
21114
21143
|
extensions: ['gpkg', 'geopackage'],
|
|
21115
|
-
priority:
|
|
21144
|
+
priority: 7,
|
|
21116
21145
|
color: '#ea79ba',
|
|
21117
21146
|
mimeTypes: ['application/geopackage+sqlite3'],
|
|
21118
21147
|
},
|
|
21119
21148
|
zip: {
|
|
21120
21149
|
extensions: ['zip', 'tar.gz'],
|
|
21121
|
-
priority:
|
|
21150
|
+
priority: 8,
|
|
21122
21151
|
color: '#f2bb3a',
|
|
21123
21152
|
mimeTypes: ['application/zip', 'application/x-zip'],
|
|
21124
21153
|
},
|
|
21125
21154
|
pdf: {
|
|
21126
21155
|
extensions: ['pdf'],
|
|
21127
|
-
priority:
|
|
21156
|
+
priority: 9,
|
|
21128
21157
|
color: '#db544a',
|
|
21129
21158
|
mimeTypes: ['application/pdf'],
|
|
21130
21159
|
},
|
|
21131
21160
|
jpg: {
|
|
21132
21161
|
extensions: ['jpg', 'jpeg', 'jfif', 'pjpeg', 'pjp'],
|
|
21133
|
-
priority:
|
|
21162
|
+
priority: 9,
|
|
21134
21163
|
color: '#673ab7',
|
|
21135
21164
|
mimeTypes: ['image/jpg'],
|
|
21136
21165
|
},
|
|
21137
21166
|
svg: {
|
|
21138
21167
|
extensions: ['svg'],
|
|
21139
|
-
priority:
|
|
21168
|
+
priority: 10,
|
|
21140
21169
|
color: '#d98294',
|
|
21141
21170
|
mimeTypes: ['image/svg+xml'],
|
|
21142
21171
|
},
|
|
21172
|
+
dxf: {
|
|
21173
|
+
extensions: ['dxf'],
|
|
21174
|
+
priority: 11,
|
|
21175
|
+
color: '#de630b',
|
|
21176
|
+
mimeTypes: ['application/x-dxf', 'image/x-dxf'],
|
|
21177
|
+
},
|
|
21143
21178
|
};
|
|
21144
21179
|
function getFormatPriority(linkFormat) {
|
|
21145
21180
|
for (const format in FORMATS) {
|
|
@@ -21156,14 +21191,18 @@ function getFormatPriority(linkFormat) {
|
|
|
21156
21191
|
function getLinkPriority(link) {
|
|
21157
21192
|
return getFormatPriority(getFileFormat(link));
|
|
21158
21193
|
}
|
|
21159
|
-
function
|
|
21160
|
-
|
|
21161
|
-
|
|
21162
|
-
|
|
21163
|
-
|
|
21194
|
+
function getFileFormatFromServiceOutput(serviceOutput) {
|
|
21195
|
+
function formatMatcher(format) {
|
|
21196
|
+
const output = serviceOutput.toLowerCase();
|
|
21197
|
+
return (format.extensions.some((extension) => output.includes(extension)) ||
|
|
21198
|
+
format.mimeTypes.some((mimeType) => output.includes(mimeType)));
|
|
21199
|
+
}
|
|
21200
|
+
for (const formatName in FORMATS) {
|
|
21201
|
+
if (formatMatcher(FORMATS[formatName])) {
|
|
21202
|
+
return formatName;
|
|
21164
21203
|
}
|
|
21165
21204
|
}
|
|
21166
|
-
return
|
|
21205
|
+
return null;
|
|
21167
21206
|
}
|
|
21168
21207
|
function getFileFormat(link) {
|
|
21169
21208
|
if ('mimeType' in link) {
|
|
@@ -24007,11 +24046,11 @@ class MarkdownParserComponent {
|
|
|
24007
24046
|
return marked.parse(this.textContent);
|
|
24008
24047
|
}
|
|
24009
24048
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MarkdownParserComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24010
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MarkdownParserComponent, selector: "gn-ui-markdown-parser", inputs: { textContent: "textContent" }, ngImport: i0, template: "<div class=\"markdown-body\" [innerHTML]=\"parsedMarkdown\"></div>\n", styles: [":host
|
|
24049
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MarkdownParserComponent, selector: "gn-ui-markdown-parser", inputs: { textContent: "textContent" }, ngImport: i0, template: "<div class=\"markdown-body\" [innerHTML]=\"parsedMarkdown\"></div>\n", styles: [":host ::ng-deep .markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0px 0px 1.5rem;line-height:1.5;word-wrap:break-word}:host ::ng-deep .markdown-body strong{@apply font-bold;color:var(--color-secondary-darker)}:host ::ng-deep .markdown-body h1,:host ::ng-deep .markdown-body h2,:host ::ng-deep .markdown-body h3,:host ::ng-deep .markdown-body h4,:host ::ng-deep .markdown-body h5,:host ::ng-deep .markdown-body h6{margin-top:24px;margin-bottom:16px;line-height:1.25;@apply text-title font-title font-bold;}:host ::ng-deep .markdown-body h1{margin:.67em 0;padding-bottom:.3em;font-size:2em;color:var(--color-primary)}:host ::ng-deep .markdown-body h2{padding-bottom:.3em;font-size:1.5em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h3{font-size:1.25em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h4{font-size:1em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h5{font-size:.875em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h6{font-size:.85em;color:var(--color-secondary-lighter)}:host ::ng-deep .markdown-body p{margin-top:0;margin-bottom:10px}:host ::ng-deep .markdown-body p>a{margin-top:0;margin-bottom:10px;color:var(--color-primary)!important;text-decoration:none!important;@apply font-bold;}:host ::ng-deep .markdown-body p>a:hover{color:var(--color-primary-darker)!important}:host ::ng-deep .markdown-body blockquote{margin:0;padding:0 1em;color:var(--color-secondary-lighter);border-left:.25em solid var(--color-primary-lighter)}:host ::ng-deep .markdown-body pre{margin-top:0;margin-bottom:0;font-size:12px;background-color:var(--color-gray-100);word-wrap:normal}:host ::ng-deep .markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;color:var(--color-secondary);border-radius:6px}:host ::ng-deep .markdown-body code{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;border-radius:6px}:host ::ng-deep .markdown-body pre code{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;border:0}:host ::ng-deep .markdown-body hr{box-sizing:content-box;overflow:hidden;background:transparent;border-bottom:1px solid var(--color-secondary);height:.15em;padding:0;margin:24px 0;background-color:var(--color-secondary);border:0}:host ::ng-deep .markdown-body hr:before{display:table;content:\"\"}:host ::ng-deep .markdown-body hr:after{display:table;clear:both;content:\"\"}:host ::ng-deep .markdown-body ul,:host ::ng-deep .markdown-body ol{margin-top:0;margin-bottom:0;padding-left:2em;list-style:revert}:host ::ng-deep .markdown-body ol ol,:host ::ng-deep .markdown-body ul ol{list-style-type:lower-roman}:host ::ng-deep .markdown-body ul ul ol,:host ::ng-deep .markdown-body ul ol ol,:host ::ng-deep .markdown-body ol ul ol,:host ::ng-deep .markdown-body ol ol ol{list-style-type:lower-alpha}:host ::ng-deep .markdown-body ol[type=\"a s\"]{list-style-type:lower-alpha}:host ::ng-deep .markdown-body ol[type=\"A s\"]{list-style-type:upper-alpha}:host ::ng-deep .markdown-body ol[type=\"i s\"]{list-style-type:lower-roman}:host ::ng-deep .markdown-body ol[type=\"I s\"]{list-style-type:upper-roman}:host ::ng-deep .markdown-body ol[type=\"1\"]{list-style:unset;list-style-type:decimal}:host ::ng-deep .markdown-body div>ol:not([type]){list-style:unset;list-style-type:decimal}:host ::ng-deep .markdown-body table{border-spacing:0;border-collapse:collapse;display:block;width:max-content;max-width:100%;overflow:auto;padding-bottom:15px}:host ::ng-deep .markdown-body td,:host ::ng-deep .markdown-body th{padding:0}:host ::ng-deep .markdown-body th{color:var(--color-secondary)}:host ::ng-deep .markdown-body table th,:host ::ng-deep .markdown-body table td{padding:6px 13px;border:1px solid var(--color-gray-500)}:host ::ng-deep .markdown-body table td>:last-child{margin-bottom:0}:host ::ng-deep .markdown-body table tr{background-color:#fff;border-top:1px solid var(--color-secondary-lighter)}:host ::ng-deep .markdown-body table tr:nth-child(2n){background-color:var(--color-gray-100)}:host ::ng-deep .markdown-body table img{background-color:transparent}:host ::ng-deep .markdown-body img{border-style:none;max-width:100%;box-sizing:content-box;background-color:transparent}:host ::ng-deep .markdown-body img[align=right]{padding-left:20px}:host ::ng-deep .markdown-body img[align=left]{padding-right:20px}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
24011
24050
|
}
|
|
24012
24051
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MarkdownParserComponent, decorators: [{
|
|
24013
24052
|
type: Component,
|
|
24014
|
-
args: [{ selector: 'gn-ui-markdown-parser', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"markdown-body\" [innerHTML]=\"parsedMarkdown\"></div>\n", styles: [":host
|
|
24053
|
+
args: [{ selector: 'gn-ui-markdown-parser', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"markdown-body\" [innerHTML]=\"parsedMarkdown\"></div>\n", styles: [":host ::ng-deep .markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0px 0px 1.5rem;line-height:1.5;word-wrap:break-word}:host ::ng-deep .markdown-body strong{@apply font-bold;color:var(--color-secondary-darker)}:host ::ng-deep .markdown-body h1,:host ::ng-deep .markdown-body h2,:host ::ng-deep .markdown-body h3,:host ::ng-deep .markdown-body h4,:host ::ng-deep .markdown-body h5,:host ::ng-deep .markdown-body h6{margin-top:24px;margin-bottom:16px;line-height:1.25;@apply text-title font-title font-bold;}:host ::ng-deep .markdown-body h1{margin:.67em 0;padding-bottom:.3em;font-size:2em;color:var(--color-primary)}:host ::ng-deep .markdown-body h2{padding-bottom:.3em;font-size:1.5em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h3{font-size:1.25em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h4{font-size:1em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h5{font-size:.875em;color:var(--color-secondary)}:host ::ng-deep .markdown-body h6{font-size:.85em;color:var(--color-secondary-lighter)}:host ::ng-deep .markdown-body p{margin-top:0;margin-bottom:10px}:host ::ng-deep .markdown-body p>a{margin-top:0;margin-bottom:10px;color:var(--color-primary)!important;text-decoration:none!important;@apply font-bold;}:host ::ng-deep .markdown-body p>a:hover{color:var(--color-primary-darker)!important}:host ::ng-deep .markdown-body blockquote{margin:0;padding:0 1em;color:var(--color-secondary-lighter);border-left:.25em solid var(--color-primary-lighter)}:host ::ng-deep .markdown-body pre{margin-top:0;margin-bottom:0;font-size:12px;background-color:var(--color-gray-100);word-wrap:normal}:host ::ng-deep .markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;color:var(--color-secondary);border-radius:6px}:host ::ng-deep .markdown-body code{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;border-radius:6px}:host ::ng-deep .markdown-body pre code{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;border:0}:host ::ng-deep .markdown-body hr{box-sizing:content-box;overflow:hidden;background:transparent;border-bottom:1px solid var(--color-secondary);height:.15em;padding:0;margin:24px 0;background-color:var(--color-secondary);border:0}:host ::ng-deep .markdown-body hr:before{display:table;content:\"\"}:host ::ng-deep .markdown-body hr:after{display:table;clear:both;content:\"\"}:host ::ng-deep .markdown-body ul,:host ::ng-deep .markdown-body ol{margin-top:0;margin-bottom:0;padding-left:2em;list-style:revert}:host ::ng-deep .markdown-body ol ol,:host ::ng-deep .markdown-body ul ol{list-style-type:lower-roman}:host ::ng-deep .markdown-body ul ul ol,:host ::ng-deep .markdown-body ul ol ol,:host ::ng-deep .markdown-body ol ul ol,:host ::ng-deep .markdown-body ol ol ol{list-style-type:lower-alpha}:host ::ng-deep .markdown-body ol[type=\"a s\"]{list-style-type:lower-alpha}:host ::ng-deep .markdown-body ol[type=\"A s\"]{list-style-type:upper-alpha}:host ::ng-deep .markdown-body ol[type=\"i s\"]{list-style-type:lower-roman}:host ::ng-deep .markdown-body ol[type=\"I s\"]{list-style-type:upper-roman}:host ::ng-deep .markdown-body ol[type=\"1\"]{list-style:unset;list-style-type:decimal}:host ::ng-deep .markdown-body div>ol:not([type]){list-style:unset;list-style-type:decimal}:host ::ng-deep .markdown-body table{border-spacing:0;border-collapse:collapse;display:block;width:max-content;max-width:100%;overflow:auto;padding-bottom:15px}:host ::ng-deep .markdown-body td,:host ::ng-deep .markdown-body th{padding:0}:host ::ng-deep .markdown-body th{color:var(--color-secondary)}:host ::ng-deep .markdown-body table th,:host ::ng-deep .markdown-body table td{padding:6px 13px;border:1px solid var(--color-gray-500)}:host ::ng-deep .markdown-body table td>:last-child{margin-bottom:0}:host ::ng-deep .markdown-body table tr{background-color:#fff;border-top:1px solid var(--color-secondary-lighter)}:host ::ng-deep .markdown-body table tr:nth-child(2n){background-color:var(--color-gray-100)}:host ::ng-deep .markdown-body table img{background-color:transparent}:host ::ng-deep .markdown-body img{border-style:none;max-width:100%;box-sizing:content-box;background-color:transparent}:host ::ng-deep .markdown-body img[align=right]{padding-left:20px}:host ::ng-deep .markdown-body img[align=left]{padding-right:20px}\n"] }]
|
|
24015
24054
|
}], propDecorators: { textContent: [{
|
|
24016
24055
|
type: Input
|
|
24017
24056
|
}] } });
|
|
@@ -24131,11 +24170,11 @@ class ButtonComponent {
|
|
|
24131
24170
|
propagateToDocumentOnly(event);
|
|
24132
24171
|
}
|
|
24133
24172
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24134
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: ButtonComponent, selector: "gn-ui-button", inputs: { type: "type", disabled: "disabled", extraClass: "extraClass" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<button\n type=\"button\"\n class=\"flex flex-row items-center text-[1em] leading-none p-[1em] rounded-[0.25em] transition-all duration-100 focus:outline-none disabled:opacity-50 disabled:pointer-events-none\"\n [class]=\"classList\"\n [disabled]=\"disabled\"\n (click)=\"handleClick($event)\"\n>\n <ng-content></ng-content>\n</button>\n", styles: [":host
|
|
24173
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: ButtonComponent, selector: "gn-ui-button", inputs: { type: "type", disabled: "disabled", extraClass: "extraClass" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: "<button\n type=\"button\"\n class=\"flex flex-row items-center text-[1em] leading-none p-[1em] rounded-[0.25em] transition-all duration-100 focus:outline-none disabled:opacity-50 disabled:pointer-events-none\"\n [class]=\"classList\"\n [disabled]=\"disabled\"\n (click)=\"handleClick($event)\"\n>\n <ng-content></ng-content>\n</button>\n", styles: [":host ::ng-deep mat-icon.mat-icon{margin-top:-.325em;margin-bottom:-.325em}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
24135
24174
|
}
|
|
24136
24175
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
24137
24176
|
type: Component,
|
|
24138
|
-
args: [{ selector: 'gn-ui-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button\n type=\"button\"\n class=\"flex flex-row items-center text-[1em] leading-none p-[1em] rounded-[0.25em] transition-all duration-100 focus:outline-none disabled:opacity-50 disabled:pointer-events-none\"\n [class]=\"classList\"\n [disabled]=\"disabled\"\n (click)=\"handleClick($event)\"\n>\n <ng-content></ng-content>\n</button>\n", styles: [":host
|
|
24177
|
+
args: [{ selector: 'gn-ui-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button\n type=\"button\"\n class=\"flex flex-row items-center text-[1em] leading-none p-[1em] rounded-[0.25em] transition-all duration-100 focus:outline-none disabled:opacity-50 disabled:pointer-events-none\"\n [class]=\"classList\"\n [disabled]=\"disabled\"\n (click)=\"handleClick($event)\"\n>\n <ng-content></ng-content>\n</button>\n", styles: [":host ::ng-deep mat-icon.mat-icon{margin-top:-.325em;margin-bottom:-.325em}\n"] }]
|
|
24139
24178
|
}], propDecorators: { type: [{
|
|
24140
24179
|
type: Input
|
|
24141
24180
|
}], disabled: [{
|
|
@@ -24210,11 +24249,11 @@ class DownloadsListComponent {
|
|
|
24210
24249
|
return link.type === 'service' && link.accessServiceProtocol === 'wfs';
|
|
24211
24250
|
}
|
|
24212
24251
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DownloadsListComponent, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24213
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: DownloadsListComponent, selector: "gn-ui-downloads-list", inputs: { links: "links" }, ngImport: i0, template: "<div\n class=\"flex flex-wrap justify-between mt-8 mb-6 sm:mt-12 sm:mb-2\"\n *ngIf=\"links && links.length > 0\"\n>\n <p\n class=\"font-title text-[28px] text-title font-medium mr-4 pb-4 text-center sm:text-left\"\n translate\n >\n record.metadata.download\n </p>\n <div
|
|
24252
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: DownloadsListComponent, selector: "gn-ui-downloads-list", inputs: { links: "links" }, ngImport: i0, template: "<div\n class=\"flex flex-wrap justify-between mt-8 mb-6 sm:mt-12 sm:mb-2\"\n *ngIf=\"links && links.length > 0\"\n>\n <p\n class=\"font-title text-[28px] text-title font-medium mr-4 pb-4 text-center sm:text-left\"\n translate\n >\n record.metadata.download\n </p>\n <div\n class=\"flex flex-wrap justify-start sm:justify-end sm:pb-4\"\n data-cy=\"download-format-filters\"\n >\n <gn-ui-button\n class=\"m-1 format-filter\"\n [extraClass]=\"\n '!px-[12px] !py-[8px] !text-[15px]' +\n (isFilterActive(format) ? ' opacity-100' : ' opacity-50')\n \"\n (buttonClick)=\"toggleFilterFormat(format)\"\n [attr.data-format]=\"format\"\n *ngFor=\"let format of visibleFormats\"\n >\n {{ getFilterFormatTitle(format) }}\n </gn-ui-button>\n </div>\n</div>\n<div class=\"mb-2 sm:mb-3\" *ngFor=\"let link of filteredLinks\">\n <gn-ui-download-item\n [link]=\"link\"\n [color]=\"getLinkColor(link)\"\n [format]=\"getLinkFormat(link)\"\n [isFromWfs]=\"isFromWfs(link)\"\n ></gn-ui-download-item>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: DownloadItemComponent, selector: "gn-ui-download-item", inputs: ["link", "color", "format", "isFromWfs"], outputs: ["exportUrl"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
24214
24253
|
}
|
|
24215
24254
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DownloadsListComponent, decorators: [{
|
|
24216
24255
|
type: Component,
|
|
24217
|
-
args: [{ selector: 'gn-ui-downloads-list', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"flex flex-wrap justify-between mt-8 mb-6 sm:mt-12 sm:mb-2\"\n *ngIf=\"links && links.length > 0\"\n>\n <p\n class=\"font-title text-[28px] text-title font-medium mr-4 pb-4 text-center sm:text-left\"\n translate\n >\n record.metadata.download\n </p>\n <div
|
|
24256
|
+
args: [{ selector: 'gn-ui-downloads-list', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"flex flex-wrap justify-between mt-8 mb-6 sm:mt-12 sm:mb-2\"\n *ngIf=\"links && links.length > 0\"\n>\n <p\n class=\"font-title text-[28px] text-title font-medium mr-4 pb-4 text-center sm:text-left\"\n translate\n >\n record.metadata.download\n </p>\n <div\n class=\"flex flex-wrap justify-start sm:justify-end sm:pb-4\"\n data-cy=\"download-format-filters\"\n >\n <gn-ui-button\n class=\"m-1 format-filter\"\n [extraClass]=\"\n '!px-[12px] !py-[8px] !text-[15px]' +\n (isFilterActive(format) ? ' opacity-100' : ' opacity-50')\n \"\n (buttonClick)=\"toggleFilterFormat(format)\"\n [attr.data-format]=\"format\"\n *ngFor=\"let format of visibleFormats\"\n >\n {{ getFilterFormatTitle(format) }}\n </gn-ui-button>\n </div>\n</div>\n<div class=\"mb-2 sm:mb-3\" *ngFor=\"let link of filteredLinks\">\n <gn-ui-download-item\n [link]=\"link\"\n [color]=\"getLinkColor(link)\"\n [format]=\"getLinkFormat(link)\"\n [isFromWfs]=\"isFromWfs(link)\"\n ></gn-ui-download-item>\n</div>\n" }]
|
|
24218
24257
|
}], ctorParameters: function () { return [{ type: i1$1.TranslateService }]; }, propDecorators: { links: [{
|
|
24219
24258
|
type: Input
|
|
24220
24259
|
}] } });
|
|
@@ -24415,11 +24454,11 @@ class CarouselComponent {
|
|
|
24415
24454
|
this.emblaApi.scrollTo(stepIndex);
|
|
24416
24455
|
}
|
|
24417
24456
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CarouselComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24418
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: CarouselComponent, selector: "gn-ui-carousel", inputs: { containerClass: "containerClass", stepsContainerClass: "stepsContainerClass" }, viewQueries: [{ propertyName: "carouselOverflowContainer", first: true, predicate: ["carouselOverflowContainer"], descendants: true }], ngImport: i0, template: "<div #carouselOverflowContainer class=\"overflow-hidden h-full w-full\">\n <div class=\"carousel-container flex flex-row\" [ngClass]=\"containerClass\">\n <ng-content></ng-content>\n </div>\n</div>\n<div\n class=\"absolute right-0 top-0 flex flex-row justify-center gap-[10px] p-1\"\n [ngClass]=\"stepsContainerClass\"\n>\n <button\n *ngFor=\"let step of steps; let i = index\"\n class=\"carousel-step-dot\"\n (click)=\"scrollToStep(i)\"\n [ngClass]=\"selectedStep === i ? 'bg-secondary' : 'bg-gray-400'\"\n ></button>\n</div>\n", styles: [":host .carousel-container
|
|
24457
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: CarouselComponent, selector: "gn-ui-carousel", inputs: { containerClass: "containerClass", stepsContainerClass: "stepsContainerClass" }, viewQueries: [{ propertyName: "carouselOverflowContainer", first: true, predicate: ["carouselOverflowContainer"], descendants: true }], ngImport: i0, template: "<div #carouselOverflowContainer class=\"overflow-hidden h-full w-full\">\n <div class=\"carousel-container flex flex-row\" [ngClass]=\"containerClass\">\n <ng-content></ng-content>\n </div>\n</div>\n<div\n class=\"absolute right-0 top-0 flex flex-row justify-center gap-[10px] p-1\"\n [ngClass]=\"stepsContainerClass\"\n>\n <button\n *ngFor=\"let step of steps; let i = index\"\n class=\"carousel-step-dot\"\n (click)=\"scrollToStep(i)\"\n [ngClass]=\"selectedStep === i ? 'bg-secondary' : 'bg-gray-400'\"\n ></button>\n</div>\n", styles: [":host .carousel-container ::ng-deep>*{flex-shrink:0}:host{position:relative}.carousel-step-dot{width:6px;height:6px;border-radius:6px;position:relative}.carousel-step-dot:after{content:\"\";position:absolute;left:-4px;top:-4px;width:14px;height:14px}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
24419
24458
|
}
|
|
24420
24459
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CarouselComponent, decorators: [{
|
|
24421
24460
|
type: Component,
|
|
24422
|
-
args: [{ selector: 'gn-ui-carousel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div #carouselOverflowContainer class=\"overflow-hidden h-full w-full\">\n <div class=\"carousel-container flex flex-row\" [ngClass]=\"containerClass\">\n <ng-content></ng-content>\n </div>\n</div>\n<div\n class=\"absolute right-0 top-0 flex flex-row justify-center gap-[10px] p-1\"\n [ngClass]=\"stepsContainerClass\"\n>\n <button\n *ngFor=\"let step of steps; let i = index\"\n class=\"carousel-step-dot\"\n (click)=\"scrollToStep(i)\"\n [ngClass]=\"selectedStep === i ? 'bg-secondary' : 'bg-gray-400'\"\n ></button>\n</div>\n", styles: [":host .carousel-container
|
|
24461
|
+
args: [{ selector: 'gn-ui-carousel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div #carouselOverflowContainer class=\"overflow-hidden h-full w-full\">\n <div class=\"carousel-container flex flex-row\" [ngClass]=\"containerClass\">\n <ng-content></ng-content>\n </div>\n</div>\n<div\n class=\"absolute right-0 top-0 flex flex-row justify-center gap-[10px] p-1\"\n [ngClass]=\"stepsContainerClass\"\n>\n <button\n *ngFor=\"let step of steps; let i = index\"\n class=\"carousel-step-dot\"\n (click)=\"scrollToStep(i)\"\n [ngClass]=\"selectedStep === i ? 'bg-secondary' : 'bg-gray-400'\"\n ></button>\n</div>\n", styles: [":host .carousel-container ::ng-deep>*{flex-shrink:0}:host{position:relative}.carousel-step-dot{width:6px;height:6px;border-radius:6px;position:relative}.carousel-step-dot:after{content:\"\";position:absolute;left:-4px;top:-4px;width:14px;height:14px}\n"] }]
|
|
24423
24462
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { containerClass: [{
|
|
24424
24463
|
type: Input
|
|
24425
24464
|
}], stepsContainerClass: [{
|
|
@@ -25982,6 +26021,7 @@ class UiElementsModule {
|
|
|
25982
26021
|
AvatarComponent,
|
|
25983
26022
|
UserPreviewComponent,
|
|
25984
26023
|
PaginationButtonsComponent,
|
|
26024
|
+
MaxLinesComponent,
|
|
25985
26025
|
RecordApiFormComponent,
|
|
25986
26026
|
MarkdownParserComponent,
|
|
25987
26027
|
ImageOverlayPreviewComponent] }); }
|
|
@@ -26054,6 +26094,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
|
|
|
26054
26094
|
AvatarComponent,
|
|
26055
26095
|
UserPreviewComponent,
|
|
26056
26096
|
PaginationButtonsComponent,
|
|
26097
|
+
MaxLinesComponent,
|
|
26057
26098
|
RecordApiFormComponent,
|
|
26058
26099
|
MarkdownParserComponent,
|
|
26059
26100
|
ImageOverlayPreviewComponent,
|
|
@@ -28366,6 +28407,105 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
|
|
|
28366
28407
|
args: [{ selector: 'gn-ui-add-layer-from-wms', template: "<div class=\"flex items-center mb-5\">\n <gn-ui-text-input\n [(value)]=\"wmsUrl\"\n (valueChange)=\"urlChange.next($event)\"\n [hint]=\"'map.wms.urlInput.hint' | translate\"\n class=\"w-96\"\n >\n </gn-ui-text-input>\n</div>\n\n<div *ngIf=\"errorMessage\" class=\"text-red-500 mt-2\">\n {{ errorMessage }}\n</div>\n\n<div *ngIf=\"loading\">\n <p class=\"loading-message\" translate>map.loading.service</p>\n</div>\n\n<div *ngIf=\"!loading && layers.length > 0\">\n <h2 class=\"font-bold\" translate>map.layers.available</h2>\n <ng-container\n *ngFor=\"let layer of layers\"\n [ngTemplateOutlet]=\"layerTreeItem\"\n [ngTemplateOutletContext]=\"{\n layer: layer\n }\"\n ></ng-container>\n</div>\n\n<ng-template #layerTreeItem let-layer=\"layer\">\n <div class=\"flex items-center justify-between layer-tree-item my-2\">\n <p class=\"max-w-xs overflow-hidden overflow-ellipsis whitespace-nowrap\">\n {{ layer.title }}\n </p>\n <gn-ui-button\n *ngIf=\"layer.name\"\n class=\"layer-add-btn\"\n type=\"primary\"\n (buttonClick)=\"addLayer(layer)\"\n extraClass=\"text-sm !px-2 !py-1\"\n translate\n ><span translate> map.layer.add </span></gn-ui-button\n >\n </div>\n <div *ngIf=\"layer.children?.length > 0\" class=\"ml-4\">\n <ng-container\n *ngFor=\"let child of layer.children\"\n [ngTemplateOutlet]=\"layerTreeItem\"\n [ngTemplateOutletContext]=\"{\n layer: child\n }\"\n >\n </ng-container>\n </div>\n</ng-template>\n" }]
|
|
28367
28408
|
}], ctorParameters: function () { return [{ type: MapFacade }, { type: i0.ChangeDetectorRef }]; } });
|
|
28368
28409
|
|
|
28410
|
+
const INVALID_FILE_FORMAT_ERROR_MESSAGE = 'Invalid file format';
|
|
28411
|
+
class AddLayerFromFileComponent {
|
|
28412
|
+
constructor(mapFacade, changeDetectorRef) {
|
|
28413
|
+
this.mapFacade = mapFacade;
|
|
28414
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
28415
|
+
this.errorMessage = null;
|
|
28416
|
+
this.successMessage = null;
|
|
28417
|
+
this.loading = false;
|
|
28418
|
+
this.acceptedMimeType = ['.geojson'];
|
|
28419
|
+
this.maxFileSize = 5000000;
|
|
28420
|
+
}
|
|
28421
|
+
async handleFileChange(file) {
|
|
28422
|
+
if (!file) {
|
|
28423
|
+
this.displayMessage(INVALID_FILE_FORMAT_ERROR_MESSAGE, 'error');
|
|
28424
|
+
return;
|
|
28425
|
+
}
|
|
28426
|
+
if (file.size > this.maxFileSize) {
|
|
28427
|
+
this.displayMessage('File size exceeds the limit of 5MB', 'error');
|
|
28428
|
+
return;
|
|
28429
|
+
}
|
|
28430
|
+
await this.addLayer(file);
|
|
28431
|
+
}
|
|
28432
|
+
async addLayer(file) {
|
|
28433
|
+
this.errorMessage = null;
|
|
28434
|
+
this.loading = true;
|
|
28435
|
+
try {
|
|
28436
|
+
if (!this.isFileFormatValid(file)) {
|
|
28437
|
+
this.displayMessage(INVALID_FILE_FORMAT_ERROR_MESSAGE, 'error');
|
|
28438
|
+
return;
|
|
28439
|
+
}
|
|
28440
|
+
const fileExtension = this.getFileExtension(file);
|
|
28441
|
+
switch (fileExtension) {
|
|
28442
|
+
case 'geojson':
|
|
28443
|
+
await this.addGeoJsonLayer(file);
|
|
28444
|
+
break;
|
|
28445
|
+
default:
|
|
28446
|
+
this.displayMessage(INVALID_FILE_FORMAT_ERROR_MESSAGE, 'error');
|
|
28447
|
+
break;
|
|
28448
|
+
}
|
|
28449
|
+
}
|
|
28450
|
+
catch (error) {
|
|
28451
|
+
const err = error;
|
|
28452
|
+
this.displayMessage('Error loading file: ' + err.message, 'error');
|
|
28453
|
+
}
|
|
28454
|
+
finally {
|
|
28455
|
+
this.loading = false;
|
|
28456
|
+
}
|
|
28457
|
+
}
|
|
28458
|
+
addGeoJsonLayer(file) {
|
|
28459
|
+
return new Promise((resolve, reject) => {
|
|
28460
|
+
try {
|
|
28461
|
+
const reader = new FileReader();
|
|
28462
|
+
reader.onload = () => {
|
|
28463
|
+
const result = reader.result;
|
|
28464
|
+
const title = file.name.split('.').slice(0, -1).join('.');
|
|
28465
|
+
const layerToAdd = {
|
|
28466
|
+
type: 'geojson',
|
|
28467
|
+
data: result,
|
|
28468
|
+
};
|
|
28469
|
+
this.mapFacade.addLayer({ ...layerToAdd, title: title });
|
|
28470
|
+
this.displayMessage('File successfully added to map', 'success');
|
|
28471
|
+
resolve();
|
|
28472
|
+
};
|
|
28473
|
+
reader.onerror = reject;
|
|
28474
|
+
reader.readAsText(file);
|
|
28475
|
+
}
|
|
28476
|
+
catch (error) {
|
|
28477
|
+
reject(error);
|
|
28478
|
+
}
|
|
28479
|
+
});
|
|
28480
|
+
}
|
|
28481
|
+
isFileFormatValid(file) {
|
|
28482
|
+
const fileExtension = this.getFileExtension(file);
|
|
28483
|
+
return this.acceptedMimeType.includes(`.${fileExtension}`);
|
|
28484
|
+
}
|
|
28485
|
+
getFileExtension(file) {
|
|
28486
|
+
return file.name.split('.').pop();
|
|
28487
|
+
}
|
|
28488
|
+
displayMessage(message, type) {
|
|
28489
|
+
if (type === 'success') {
|
|
28490
|
+
this.successMessage = message;
|
|
28491
|
+
}
|
|
28492
|
+
else if (type === 'error') {
|
|
28493
|
+
this.errorMessage = message;
|
|
28494
|
+
}
|
|
28495
|
+
setTimeout(() => {
|
|
28496
|
+
this.successMessage = null;
|
|
28497
|
+
this.errorMessage = null;
|
|
28498
|
+
this.changeDetectorRef.detectChanges();
|
|
28499
|
+
}, 5000);
|
|
28500
|
+
}
|
|
28501
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AddLayerFromFileComponent, deps: [{ token: MapFacade }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28502
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: AddLayerFromFileComponent, selector: "gn-ui-add-layer-from-file", ngImport: i0, template: "<div class=\"flex flex-col gap-2 my-2\">\n <div class=\"flex items-center gap-4\">\n <div class=\"flex-grow rounded-md border-2 border-gray-200\">\n <gn-ui-drag-and-drop-file-input\n (fileChange)=\"handleFileChange($event)\"\n [accept]=\"acceptedMimeType.join(',')\"\n [placeholder]=\"'map.addFromFile.placeholder' | translate\"\n class=\"placeholder-grey\"\n ></gn-ui-drag-and-drop-file-input>\n </div>\n </div>\n <p class=\"text-sm text-gray-600\" translate>map.help.addFromFile</p>\n</div>\n\n<div *ngIf=\"errorMessage\" class=\"text-red-500 mt-2\">\n {{ errorMessage }}\n</div>\n\n<div *ngIf=\"successMessage\" class=\"text-green-500 mt-2\">\n {{ successMessage }}\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: DragAndDropFileInputComponent, selector: "gn-ui-drag-and-drop-file-input", inputs: ["placeholder", "accept"], outputs: ["fileChange"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] }); }
|
|
28503
|
+
}
|
|
28504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AddLayerFromFileComponent, decorators: [{
|
|
28505
|
+
type: Component,
|
|
28506
|
+
args: [{ selector: 'gn-ui-add-layer-from-file', template: "<div class=\"flex flex-col gap-2 my-2\">\n <div class=\"flex items-center gap-4\">\n <div class=\"flex-grow rounded-md border-2 border-gray-200\">\n <gn-ui-drag-and-drop-file-input\n (fileChange)=\"handleFileChange($event)\"\n [accept]=\"acceptedMimeType.join(',')\"\n [placeholder]=\"'map.addFromFile.placeholder' | translate\"\n class=\"placeholder-grey\"\n ></gn-ui-drag-and-drop-file-input>\n </div>\n </div>\n <p class=\"text-sm text-gray-600\" translate>map.help.addFromFile</p>\n</div>\n\n<div *ngIf=\"errorMessage\" class=\"text-red-500 mt-2\">\n {{ errorMessage }}\n</div>\n\n<div *ngIf=\"successMessage\" class=\"text-green-500 mt-2\">\n {{ successMessage }}\n</div>\n" }]
|
|
28507
|
+
}], ctorParameters: function () { return [{ type: MapFacade }, { type: i0.ChangeDetectorRef }]; } });
|
|
28508
|
+
|
|
28369
28509
|
class AddLayerFromWfsComponent {
|
|
28370
28510
|
constructor(mapFacade, changeDetectorRef) {
|
|
28371
28511
|
this.mapFacade = mapFacade;
|
|
@@ -28427,11 +28567,11 @@ class LayersPanelComponent {
|
|
|
28427
28567
|
this.mapFacade.removeLayer(index);
|
|
28428
28568
|
}
|
|
28429
28569
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: LayersPanelComponent, deps: [{ token: MapFacade }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28430
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: LayersPanelComponent, selector: "gn-ui-layers-panel", ngImport: i0, template: "<div\n class=\"bg-white rounded shadow shadow-lg relative h-full w-[400px] overflow-hidden\"\n>\n <div class=\"p-3 border-b border-gray-300 flex items-center\">\n <mat-icon class=\"material-symbols-outlined mr-2\">layers</mat-icon>\n <span translate>map.layers.list</span>\n </div>\n <div class=\"flex flex-col px-4 divide-y divide-y-gray-50\">\n <div\n *ngFor=\"let layer of layers$ | async; let index = index\"\n class=\"flex flex-row py-3\"\n >\n <mat-icon class=\"material-symbols-outlined -ml-2 mr-2 shrink-0\"\n >chevron_right</mat-icon\n >\n <span class=\"mr-2 grow\">{{ layer.title }}</span>\n <a\n href\n class=\"underline text-sm text-red-700 hover:text-red-900\"\n (click)=\"deleteLayer(index)\"\n >\n delete\n </a>\n </div>\n </div>\n <gn-ui-expandable-panel-button [titleTemplate]=\"addLayerTitle\">\n <mat-tab-group animationDuration=\"200ms\" class=\"h-full\">\n <mat-tab [label]=\"'map.add.layer.catalog' | translate\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-catalog></gn-ui-add-layer-from-catalog>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wms' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wms></gn-ui-add-layer-from-wms>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wfs' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wfs></gn-ui-add-layer-from-wfs>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.file' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3
|
|
28570
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: LayersPanelComponent, selector: "gn-ui-layers-panel", ngImport: i0, template: "<div\n class=\"bg-white rounded shadow shadow-lg relative h-full w-[400px] overflow-hidden\"\n>\n <div class=\"p-3 border-b border-gray-300 flex items-center\">\n <mat-icon class=\"material-symbols-outlined mr-2\">layers</mat-icon>\n <span translate>map.layers.list</span>\n </div>\n <div class=\"flex flex-col px-4 divide-y divide-y-gray-50\">\n <div\n *ngFor=\"let layer of layers$ | async; let index = index\"\n class=\"flex flex-row py-3\"\n >\n <mat-icon class=\"material-symbols-outlined -ml-2 mr-2 shrink-0\"\n >chevron_right</mat-icon\n >\n <span class=\"mr-2 grow\">{{ layer.title }}</span>\n <a\n href\n class=\"underline text-sm text-red-700 hover:text-red-900\"\n (click)=\"deleteLayer(index)\"\n >\n delete\n </a>\n </div>\n </div>\n <gn-ui-expandable-panel-button [titleTemplate]=\"addLayerTitle\">\n <mat-tab-group animationDuration=\"200ms\" class=\"h-full\">\n <mat-tab [label]=\"'map.add.layer.catalog' | translate\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-catalog></gn-ui-add-layer-from-catalog>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wms' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wms></gn-ui-add-layer-from-wms>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wfs' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wfs></gn-ui-add-layer-from-wfs>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.file' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-file></gn-ui-add-layer-from-file>\n </div>\n </mat-tab>\n </mat-tab-group>\n </gn-ui-expandable-panel-button>\n</div>\n\n<ng-template #addLayerTitle>\n <mat-icon class=\"material-symbols-outlined mr-4\">add_circle</mat-icon>\n <span translate>map.add.layer</span>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ExpandablePanelButtonComponent, selector: "gn-ui-expandable-panel-button", inputs: ["titleTemplate", "collapsed"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i2$3.MatTab, selector: "mat-tab", inputs: ["disabled"], exportAs: ["matTab"] }, { kind: "component", type: i2$3.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "disableRipple", "fitInkBarToContent", "mat-stretch-tabs"], exportAs: ["matTabGroup"] }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: AddLayerFromCatalogComponent, selector: "gn-ui-add-layer-from-catalog" }, { kind: "component", type: AddLayerFromWmsComponent, selector: "gn-ui-add-layer-from-wms" }, { kind: "component", type: AddLayerFromFileComponent, selector: "gn-ui-add-layer-from-file" }, { kind: "component", type: AddLayerFromWfsComponent, selector: "gn-ui-add-layer-from-wfs" }, { kind: "pipe", type: i1$3.AsyncPipe, name: "async" }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
28431
28571
|
}
|
|
28432
28572
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: LayersPanelComponent, decorators: [{
|
|
28433
28573
|
type: Component,
|
|
28434
|
-
args: [{ selector: 'gn-ui-layers-panel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"bg-white rounded shadow shadow-lg relative h-full w-[400px] overflow-hidden\"\n>\n <div class=\"p-3 border-b border-gray-300 flex items-center\">\n <mat-icon class=\"material-symbols-outlined mr-2\">layers</mat-icon>\n <span translate>map.layers.list</span>\n </div>\n <div class=\"flex flex-col px-4 divide-y divide-y-gray-50\">\n <div\n *ngFor=\"let layer of layers$ | async; let index = index\"\n class=\"flex flex-row py-3\"\n >\n <mat-icon class=\"material-symbols-outlined -ml-2 mr-2 shrink-0\"\n >chevron_right</mat-icon\n >\n <span class=\"mr-2 grow\">{{ layer.title }}</span>\n <a\n href\n class=\"underline text-sm text-red-700 hover:text-red-900\"\n (click)=\"deleteLayer(index)\"\n >\n delete\n </a>\n </div>\n </div>\n <gn-ui-expandable-panel-button [titleTemplate]=\"addLayerTitle\">\n <mat-tab-group animationDuration=\"200ms\" class=\"h-full\">\n <mat-tab [label]=\"'map.add.layer.catalog' | translate\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-catalog></gn-ui-add-layer-from-catalog>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wms' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wms></gn-ui-add-layer-from-wms>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wfs' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wfs></gn-ui-add-layer-from-wfs>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.file' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3
|
|
28574
|
+
args: [{ selector: 'gn-ui-layers-panel', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"bg-white rounded shadow shadow-lg relative h-full w-[400px] overflow-hidden\"\n>\n <div class=\"p-3 border-b border-gray-300 flex items-center\">\n <mat-icon class=\"material-symbols-outlined mr-2\">layers</mat-icon>\n <span translate>map.layers.list</span>\n </div>\n <div class=\"flex flex-col px-4 divide-y divide-y-gray-50\">\n <div\n *ngFor=\"let layer of layers$ | async; let index = index\"\n class=\"flex flex-row py-3\"\n >\n <mat-icon class=\"material-symbols-outlined -ml-2 mr-2 shrink-0\"\n >chevron_right</mat-icon\n >\n <span class=\"mr-2 grow\">{{ layer.title }}</span>\n <a\n href\n class=\"underline text-sm text-red-700 hover:text-red-900\"\n (click)=\"deleteLayer(index)\"\n >\n delete\n </a>\n </div>\n </div>\n <gn-ui-expandable-panel-button [titleTemplate]=\"addLayerTitle\">\n <mat-tab-group animationDuration=\"200ms\" class=\"h-full\">\n <mat-tab [label]=\"'map.add.layer.catalog' | translate\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-catalog></gn-ui-add-layer-from-catalog>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wms' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wms></gn-ui-add-layer-from-wms>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.wfs' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-wfs></gn-ui-add-layer-from-wfs>\n </div>\n </mat-tab>\n <mat-tab [label]=\"'map.add.layer.file' | translate\" bodyClass=\"h-full\">\n <div class=\"p-3\">\n <gn-ui-add-layer-from-file></gn-ui-add-layer-from-file>\n </div>\n </mat-tab>\n </mat-tab-group>\n </gn-ui-expandable-panel-button>\n</div>\n\n<ng-template #addLayerTitle>\n <mat-icon class=\"material-symbols-outlined mr-4\">add_circle</mat-icon>\n <span translate>map.add.layer</span>\n</ng-template>\n" }]
|
|
28435
28575
|
}], ctorParameters: function () { return [{ type: MapFacade }]; } });
|
|
28436
28576
|
|
|
28437
28577
|
class MapEffects {
|
|
@@ -28464,6 +28604,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
|
|
|
28464
28604
|
args: [{ selector: 'gn-ui-map-container', changeDetection: ChangeDetectionStrategy.OnPush, template: "<gn-ui-map-context [context]=\"context$ | async\"></gn-ui-map-context>\n" }]
|
|
28465
28605
|
}], ctorParameters: function () { return [{ type: MapFacade }]; } });
|
|
28466
28606
|
|
|
28607
|
+
class GeocodingComponent {
|
|
28608
|
+
constructor(mapManager) {
|
|
28609
|
+
this.mapManager = mapManager;
|
|
28610
|
+
this.searchText = '';
|
|
28611
|
+
this.results = [];
|
|
28612
|
+
this.searchTextChanged = new Subject();
|
|
28613
|
+
this.destroy$ = new Subject();
|
|
28614
|
+
this.searchTextChanged
|
|
28615
|
+
.pipe(debounceTime(300), switchMap$1((searchText) => {
|
|
28616
|
+
const options = {
|
|
28617
|
+
origins: ['zipcode', 'gg25', 'address'],
|
|
28618
|
+
limit: 6,
|
|
28619
|
+
};
|
|
28620
|
+
return from(queryGeoadmin(searchText, options)).pipe(catchError$1((error) => {
|
|
28621
|
+
console.error(error);
|
|
28622
|
+
return [];
|
|
28623
|
+
}));
|
|
28624
|
+
}), takeUntil(this.destroy$))
|
|
28625
|
+
.subscribe((results) => {
|
|
28626
|
+
this.results = results;
|
|
28627
|
+
});
|
|
28628
|
+
}
|
|
28629
|
+
ngOnDestroy() {
|
|
28630
|
+
this.destroy$.next();
|
|
28631
|
+
this.destroy$.complete();
|
|
28632
|
+
}
|
|
28633
|
+
onSearchChange(searchText) {
|
|
28634
|
+
if (!searchText) {
|
|
28635
|
+
this.clearSearch();
|
|
28636
|
+
return;
|
|
28637
|
+
}
|
|
28638
|
+
else {
|
|
28639
|
+
this.searchTextChanged.next(searchText);
|
|
28640
|
+
}
|
|
28641
|
+
}
|
|
28642
|
+
clearSearch() {
|
|
28643
|
+
this.searchText = '';
|
|
28644
|
+
this.results = [];
|
|
28645
|
+
}
|
|
28646
|
+
zoomToLocation(result) {
|
|
28647
|
+
const map = this.mapManager.map;
|
|
28648
|
+
const view = map.getView();
|
|
28649
|
+
const geometry = result.geom;
|
|
28650
|
+
const polygonCoords = geometry.coordinates;
|
|
28651
|
+
const transformedCoords = polygonCoords[0].map((coord) => fromLonLat(coord));
|
|
28652
|
+
const polygon = new Polygon([transformedCoords]);
|
|
28653
|
+
view.fit(polygon, {
|
|
28654
|
+
duration: 100,
|
|
28655
|
+
maxZoom: 12,
|
|
28656
|
+
});
|
|
28657
|
+
}
|
|
28658
|
+
onEnterPress() {
|
|
28659
|
+
if (this.results && this.results.length > 0) {
|
|
28660
|
+
this.zoomToLocation(this.results[0]);
|
|
28661
|
+
}
|
|
28662
|
+
}
|
|
28663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GeocodingComponent, deps: [{ token: MapManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28664
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: GeocodingComponent, selector: "gn-ui-geocoding", ngImport: i0, template: "<gn-ui-search-input\n [(value)]=\"searchText\"\n (valueChange)=\"onSearchChange($event)\"\n (keyup.enter)=\"onEnterPress()\"\n [placeholder]=\"'map.geocoding.placeholder' | translate\"\n>\n</gn-ui-search-input>\n<ul\n class=\"bg-gray-50 border border-gray-200 w-full mt-2 shadow-sm rounded-lg\"\n *ngIf=\"results && results.length\"\n>\n <li\n *ngFor=\"let result of results\"\n (click)=\"zoomToLocation(result)\"\n class=\"flex items-center pl-8 pr-4 py-2 border-b border-gray-200 relative cursor-pointer hover:bg-blue-100 hover:text-gray-800 transition duration-300 ease-in-out\"\n >\n <svg\n class=\"stroke-current text-blue-500 absolute w-5 h-5 left-3 top-3\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n >\n <path\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 11a3 3 0 11-6 0 3 3 0 016 0z\"\n />\n </svg>\n <span class=\"font-sans font-semibold ml-4\">{{ result.label }}</span>\n </li>\n</ul>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: SearchInputComponent, selector: "gn-ui-search-input", inputs: ["value", "placeholder"], outputs: ["valueChange"] }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }] }); }
|
|
28665
|
+
}
|
|
28666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GeocodingComponent, decorators: [{
|
|
28667
|
+
type: Component,
|
|
28668
|
+
args: [{ selector: 'gn-ui-geocoding', template: "<gn-ui-search-input\n [(value)]=\"searchText\"\n (valueChange)=\"onSearchChange($event)\"\n (keyup.enter)=\"onEnterPress()\"\n [placeholder]=\"'map.geocoding.placeholder' | translate\"\n>\n</gn-ui-search-input>\n<ul\n class=\"bg-gray-50 border border-gray-200 w-full mt-2 shadow-sm rounded-lg\"\n *ngIf=\"results && results.length\"\n>\n <li\n *ngFor=\"let result of results\"\n (click)=\"zoomToLocation(result)\"\n class=\"flex items-center pl-8 pr-4 py-2 border-b border-gray-200 relative cursor-pointer hover:bg-blue-100 hover:text-gray-800 transition duration-300 ease-in-out\"\n >\n <svg\n class=\"stroke-current text-blue-500 absolute w-5 h-5 left-3 top-3\"\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"none\"\n viewBox=\"0 0 24 24\"\n stroke=\"currentColor\"\n >\n <path\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z\"\n />\n <path\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n stroke-width=\"2\"\n d=\"M15 11a3 3 0 11-6 0 3 3 0 016 0z\"\n />\n </svg>\n <span class=\"font-sans font-semibold ml-4\">{{ result.label }}</span>\n </li>\n</ul>\n" }]
|
|
28669
|
+
}], ctorParameters: function () { return [{ type: MapManagerService }]; } });
|
|
28670
|
+
|
|
28467
28671
|
class FeatureMapModule {
|
|
28468
28672
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FeatureMapModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
28469
28673
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: FeatureMapModule, declarations: [MapContextComponent,
|
|
@@ -28473,7 +28677,9 @@ class FeatureMapModule {
|
|
|
28473
28677
|
MapContainerComponent,
|
|
28474
28678
|
AddLayerRecordPreviewComponent,
|
|
28475
28679
|
AddLayerFromWmsComponent,
|
|
28476
|
-
|
|
28680
|
+
AddLayerFromFileComponent,
|
|
28681
|
+
AddLayerFromWfsComponent,
|
|
28682
|
+
GeocodingComponent], imports: [CommonModule,
|
|
28477
28683
|
UiMapModule,
|
|
28478
28684
|
UiLayoutModule,
|
|
28479
28685
|
MatIconModule,
|
|
@@ -28484,7 +28690,8 @@ class FeatureMapModule {
|
|
|
28484
28690
|
MapInstanceDirective,
|
|
28485
28691
|
LayersPanelComponent,
|
|
28486
28692
|
AddLayerFromCatalogComponent,
|
|
28487
|
-
MapContainerComponent
|
|
28693
|
+
MapContainerComponent,
|
|
28694
|
+
GeocodingComponent] }); }
|
|
28488
28695
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FeatureMapModule, providers: [
|
|
28489
28696
|
{
|
|
28490
28697
|
provide: FEATURE_MAP_OPTIONS,
|
|
@@ -28514,7 +28721,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
|
|
|
28514
28721
|
MapContainerComponent,
|
|
28515
28722
|
AddLayerRecordPreviewComponent,
|
|
28516
28723
|
AddLayerFromWmsComponent,
|
|
28724
|
+
AddLayerFromFileComponent,
|
|
28517
28725
|
AddLayerFromWfsComponent,
|
|
28726
|
+
GeocodingComponent,
|
|
28518
28727
|
],
|
|
28519
28728
|
exports: [
|
|
28520
28729
|
MapContextComponent,
|
|
@@ -28522,6 +28731,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
|
|
|
28522
28731
|
LayersPanelComponent,
|
|
28523
28732
|
AddLayerFromCatalogComponent,
|
|
28524
28733
|
MapContainerComponent,
|
|
28734
|
+
GeocodingComponent,
|
|
28525
28735
|
],
|
|
28526
28736
|
imports: [
|
|
28527
28737
|
CommonModule,
|
|
@@ -29903,15 +30113,16 @@ class DataService {
|
|
|
29903
30113
|
// Pour DL toutes les données
|
|
29904
30114
|
return this.getDownloadUrlsFromWfs(wfsLink.url.toString(), wfsLink.name).pipe(map$1((urls) => urls.all), map$1((urls) => Object.keys(urls).map((format) => ({
|
|
29905
30115
|
...wfsLink,
|
|
30116
|
+
type: 'download',
|
|
29906
30117
|
url: new URL(urls[format]),
|
|
29907
|
-
mimeType: getMimeTypeForFormat(
|
|
30118
|
+
mimeType: getMimeTypeForFormat(getFileFormatFromServiceOutput(format)),
|
|
29908
30119
|
}))));
|
|
29909
30120
|
}
|
|
29910
30121
|
getDownloadLinksFromEsriRest(esriRestLink) {
|
|
29911
30122
|
return ['json', 'geojson'].map((format) => ({
|
|
29912
30123
|
...esriRestLink,
|
|
29913
30124
|
url: new URL(this.getDownloadUrlFromEsriRest(esriRestLink.url.toString(), format)),
|
|
29914
|
-
mimeType: getMimeTypeForFormat(
|
|
30125
|
+
mimeType: getMimeTypeForFormat(getFileFormatFromServiceOutput(format)),
|
|
29915
30126
|
}));
|
|
29916
30127
|
}
|
|
29917
30128
|
readAsGeoJson(link) {
|
|
@@ -31954,5 +32165,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImpor
|
|
|
31954
32165
|
* Generated bundle index. Do not edit.
|
|
31955
32166
|
*/
|
|
31956
32167
|
|
|
31957
|
-
export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, AuthService, AutocompleteComponent, AvatarComponent, AvatarServiceInterface, BLOCK_MODEL_FIXTURE, BadgeComponent, BaseReader, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CONFIG_MALFORMED, CONFIG_MINIMAL, CONFIG_MISSING_MANDATORY, CONFIG_OK, CONFIG_UNRECOGNIZED_KEYS, CONFIG_WITH_TRANSLATIONS, CONFIG_WRONG_LANGUAGE_CODE, CarouselComponent, CatalogTitleComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ChipsInputComponent, ClearError, ClearResults, ColorScaleComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_BASELAYER_CONTEXT, DEFAULT_GN4_LOGIN_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_STYLE_FIXTURE, DEFAULT_STYLE_HL_FIXTURE, DEFAULT_VIEW, DataService, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DateRangePickerComponent, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EMPTY_BLOCK_MODEL_FIXTURE, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalViewerButtonComponent, FACET_ITEM_FIXTURE, FEATURE_MAP_OPTIONS, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FORMATS, FacetBlockComponent, FacetBlockStubComponent, FacetItemComponent, FacetItemStubComponent, FacetListComponent, FacetsContainerComponent, FacetsModule, FavoriteStarComponent, FavoritesService, FeatureAuthModule, FeatureCatalogModule, FeatureDatavizModule, FeatureDetailComponent, FeatureEditorModule, FeatureInfoService, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileTranslateLoader, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldFileComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentComponent, FuzzySearchComponent, GN_UI_VERSION, GeoTableViewComponent, Gn4MetadataMapper, Gn4Repository, Gn4SettingsService, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageOverlayPreviewComponent, LANGUAGES_LIST, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LANG_3_TO_2_MAPPER, LOGIN_URL, LONLAT_CRS_CODES, LangService, LanguageSwitcherComponent, LayersPanelComponent, LinkCardComponent, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_CONFIG_FIXTURE, MAP_FEATURE_KEY, METADATA_LANGUAGE, MY_FORMATS, MapComponent, MapContainerComponent, MapContextComponent, MapContextLayerTypeEnum, MapContextService, MapFacade, MapInstanceDirective, MapManagerService, MapStyleService, MapUtilsService, MapUtilsWMSService, MapViewComponent, MarkdownParserComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataInfoComponent, MetadataLinkType, MetadataQualityComponent, MetadataQualityItemComponent, MyOrgService, NavigationButtonComponent, ORGANIZATIONS_STRATEGY, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationsFromGroupsService, OrganizationsFromMetadataService, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PatchResultsAggregations, PopupAlertComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_SEARCH, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordTableComponent, RecordsMetricsComponent, RecordsService, RelatedRecordCardComponent, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SearchEffects, SearchFacade, SearchInputComponent, SearchResultsErrorComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SiteTitleComponent, SortByComponent, SourceLabelComponent, SourcesService, SpinningLoaderComponent, StarToggleComponent, StepBarComponent, StickyHeaderComponent, SupportedTypes, TABLE_ITEM_FIXTURE, TABLE_ITEM_FIXTURE_HAB, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableComponent, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslateTestingModule, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UiCatalogModule, UiDatavizModule, UiElementsModule, FacetsModule$1 as UiFacetsModule, UiInputsModule, UiLayoutModule, UiMapModule, UiSearchModule, UiWidgetsModule, UpdateConfigAggregations, UpdateFilters, UserPreviewComponent, UtilI18nModule, UtilSharedModule, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, WFS_MAX_FEATURES, WizardComponent, WizardFieldComponent, WizardFieldType, WizardService, WizardSummarizeComponent, _reset, addLayer, changeLayerOrder, checkFileFormat, clearLayerError, createFuzzyFilter, currentPage, defaultMapOptions, dragPanCondition, dropEmptyTranslations,
|
|
32168
|
+
export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, AuthService, AutocompleteComponent, AvatarComponent, AvatarServiceInterface, BLOCK_MODEL_FIXTURE, BadgeComponent, BaseReader, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CONFIG_MALFORMED, CONFIG_MINIMAL, CONFIG_MISSING_MANDATORY, CONFIG_OK, CONFIG_UNRECOGNIZED_KEYS, CONFIG_WITH_TRANSLATIONS, CONFIG_WRONG_LANGUAGE_CODE, CarouselComponent, CatalogTitleComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ChipsInputComponent, ClearError, ClearResults, ColorScaleComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_BASELAYER_CONTEXT, DEFAULT_GN4_LOGIN_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_STYLE_FIXTURE, DEFAULT_STYLE_HL_FIXTURE, DEFAULT_VIEW, DataService, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DateRangePickerComponent, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EMPTY_BLOCK_MODEL_FIXTURE, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalViewerButtonComponent, FACET_ITEM_FIXTURE, FEATURE_MAP_OPTIONS, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FORMATS, FacetBlockComponent, FacetBlockStubComponent, FacetItemComponent, FacetItemStubComponent, FacetListComponent, FacetsContainerComponent, FacetsModule, FavoriteStarComponent, FavoritesService, FeatureAuthModule, FeatureCatalogModule, FeatureDatavizModule, FeatureDetailComponent, FeatureEditorModule, FeatureInfoService, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileTranslateLoader, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldFileComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentComponent, FuzzySearchComponent, GN_UI_VERSION, GeoTableViewComponent, Gn4MetadataMapper, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageOverlayPreviewComponent, LANGUAGES_LIST, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LANG_3_TO_2_MAPPER, LOGIN_URL, LONLAT_CRS_CODES, LangService, LanguageSwitcherComponent, LayersPanelComponent, LinkCardComponent, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_CONFIG_FIXTURE, MAP_FEATURE_KEY, METADATA_LANGUAGE, MY_FORMATS, MapComponent, MapContainerComponent, MapContextComponent, MapContextLayerTypeEnum, MapContextService, MapFacade, MapInstanceDirective, MapManagerService, MapStyleService, MapUtilsService, MapUtilsWMSService, MapViewComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataInfoComponent, MetadataLinkType, MetadataQualityComponent, MetadataQualityItemComponent, MyOrgService, NavigationButtonComponent, ORGANIZATIONS_STRATEGY, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationsFromGroupsService, OrganizationsFromMetadataService, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PatchResultsAggregations, PopupAlertComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_SEARCH, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordTableComponent, RecordsMetricsComponent, RecordsService, RelatedRecordCardComponent, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SearchEffects, SearchFacade, SearchInputComponent, SearchResultsErrorComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SiteTitleComponent, SortByComponent, SourceLabelComponent, SourcesService, SpinningLoaderComponent, StarToggleComponent, StepBarComponent, StickyHeaderComponent, SupportedTypes, TABLE_ITEM_FIXTURE, TABLE_ITEM_FIXTURE_HAB, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableComponent, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslateTestingModule, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UiCatalogModule, UiDatavizModule, UiElementsModule, FacetsModule$1 as UiFacetsModule, UiInputsModule, UiLayoutModule, UiMapModule, UiSearchModule, UiWidgetsModule, UpdateConfigAggregations, UpdateFilters, UserPreviewComponent, UtilI18nModule, UtilSharedModule, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, WFS_MAX_FEATURES, WizardComponent, WizardFieldComponent, WizardFieldType, WizardService, WizardSummarizeComponent, _reset, addLayer, changeLayerOrder, checkFileFormat, clearLayerError, createFuzzyFilter, currentPage, defaultMapOptions, dragPanCondition, dropEmptyTranslations, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryFromGeoJSON, getGlobalConfig, getJsonDataItemsProxy, getLangFromBrowser, getLinkLabel, getLinkPriority, getMapLayers, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSpatialFilterEnabled, getThemeConfig, initSearch, initialMapState, initialState, isConfigLoaded, isEndOfResults, isFormatInQueryParam, loadAppConfig, mapContact, mapLogo, mapOrganization, mapReducer, mimeTypeToFormat, mouseWheelZoomCondition, openDataset, parse, placeholder, propagateToDocumentOnly, provideGn4, provideRepositoryUrl, readDataset, readDatasetHeaders, reducer$1 as reducer, reducerSearch, removeLayer, removeSearchParams, removeWhitespace, selectFallback, selectFallbackFields, selectField, selectTranslatedField, selectTranslatedValue, setLayerError, sortByFromString, sortByToString, sortByToStrings, stripHtml, toDate, toModel, toXml, totalPages, updateLayer };
|
|
31958
32169
|
//# sourceMappingURL=geonetwork-ui.mjs.map
|