geonetwork-ui 2.4.0-dev.e97caaf2 → 2.4.0-dev.f5019723
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/metadata-converter/src/index.mjs +4 -1
- package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +254 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +17 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +196 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +46 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +74 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +27 -0
- package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +11 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +6 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +17 -29
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +8 -15
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +6 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +54 -54
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +35 -3
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +78 -39
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +41 -7
- package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -4
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +6 -6
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +10 -7
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +40 -50
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
- package/esm2022/libs/feature/editor/src/index.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +4 -16
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +4 -2
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +95 -0
- package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +109 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +15 -32
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +23 -10
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +38 -60
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +86 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +4 -8
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +36 -7
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +35 -59
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +14 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +41 -7
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +5 -5
- package/esm2022/libs/feature/map/src/index.mjs +2 -9
- package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +9 -15
- package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
- package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +16 -16
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +16 -10
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +10 -8
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -6
- package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +4 -44
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +43 -29
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +17 -8
- package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +4 -168
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +21 -17
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +14 -8
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +40 -52
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +12 -6
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +7 -7
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +1 -6
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
- package/esm2022/libs/ui/elements/src/index.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -6
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/inputs/src/index.mjs +5 -1
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +7 -4
- package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
- package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +5 -4
- package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +6 -4
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -4
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +4 -3
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +2 -7
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/index.mjs +3 -1
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
- package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
- package/esm2022/libs/ui/map/src/index.mjs +4 -3
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +8 -6
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +137 -0
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
- package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +8 -8
- package/esm2022/libs/util/app-config/src/index.mjs +2 -1
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
- package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +27 -0
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
- package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
- package/esm2022/translations/de.json +28 -2
- package/esm2022/translations/en.json +59 -33
- package/esm2022/translations/es.json +26 -0
- package/esm2022/translations/fr.json +90 -64
- package/esm2022/translations/it.json +28 -2
- package/esm2022/translations/nl.json +26 -0
- package/esm2022/translations/pt.json +26 -0
- package/fesm2022/geonetwork-ui.mjs +9462 -8515
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +3 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
- package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +20 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +9 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +4 -5
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +10 -11
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +58 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +12 -7
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +21 -2
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +6 -6
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +15 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +2 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +10 -9
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +13 -20
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/index.d.ts +1 -0
- package/libs/feature/editor/src/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +1 -5
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +2 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +38 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +2 -5
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +5 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +6 -13
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +20 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +1 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +7 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +9 -15
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +5 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +3 -2
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +10 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +6 -0
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +2 -2
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/index.d.ts +1 -8
- package/libs/feature/map/src/index.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
- package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +7 -9
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +2 -2
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
- package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts +12 -18
- 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 +7 -7
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +4 -3
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
- package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/feature-record.module.d.ts +13 -11
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +14 -20
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +5 -3
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +9 -10
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +1 -1
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
- package/libs/ui/inputs/src/index.d.ts +4 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +0 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +25 -26
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/layout/src/index.d.ts +2 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
- package/libs/ui/map/src/index.d.ts +3 -2
- package/libs/ui/map/src/index.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
- package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
- package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +3 -3
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/util/app-config/src/index.d.ts +1 -0
- package/libs/util/app-config/src/index.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
- package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
- package/package.json +5 -3
- package/src/libs/api/metadata-converter/src/index.ts +3 -0
- package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
- package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +378 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +370 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +95 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +97 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/update-frequency.mapper.ts +67 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +68 -0
- package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +272 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +110 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +85 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +73 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +5 -6
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +21 -43
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +5 -14
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +13 -15
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +133 -156
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +37 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +132 -68
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +47 -3
- package/src/libs/common/domain/src/lib/model/record/contact.model.ts +1 -1
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +7 -7
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +26 -0
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +4 -1
- package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +37 -37
- package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
- package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
- package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
- package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
- package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
- package/src/libs/common/fixtures/src/lib/individual.fixtures.ts +61 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
- package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
- package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +35 -11
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
- package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +45 -15
- package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
- package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -1
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
- package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +6 -2
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +38 -78
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
- package/src/libs/feature/editor/src/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +11 -4
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +12 -24
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -13
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +47 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +132 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +40 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +170 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +13 -23
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +11 -50
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-resource-updated/form-field-resource-updated.component.ts → form-field-date-updated/form-field-date-updated.component.ts} +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +35 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +41 -83
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +93 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +13 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +0 -9
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +7 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +62 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +23 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +37 -69
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +34 -20
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +12 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +31 -29
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -1
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
- package/src/libs/feature/editor/src/lib/fields.config.ts +45 -6
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +12 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +7 -3
- package/src/libs/feature/map/src/index.ts +1 -8
- package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
- package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
- package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
- package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +18 -21
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +17 -11
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +11 -12
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +12 -10
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +11 -9
- package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
- package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -26
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +2 -2
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +15 -5
- package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
- package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +1 -229
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +29 -20
- package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -3
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +4 -4
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +45 -72
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -1
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +1 -1
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +5 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +14 -3
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
- package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +0 -3
- package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
- package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
- package/src/libs/ui/elements/src/index.ts +1 -1
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -20
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +5 -0
- package/src/libs/ui/inputs/src/index.ts +4 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +4 -1
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +11 -3
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +7 -3
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +30 -22
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +5 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +4 -3
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +0 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +1 -1
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -3
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +1 -1
- package/src/libs/ui/layout/src/index.ts +2 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +2 -2
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
- package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +13 -16
- package/src/libs/ui/map/src/index.ts +3 -2
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +203 -0
- package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
- package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +20 -9
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +5 -6
- package/src/libs/util/app-config/src/index.ts +1 -0
- package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
- package/src/libs/util/app-config/src/lib/map-layers.ts +31 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
- package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
- package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
- package/tailwind.base.config.js +1 -0
- package/tailwind.base.css +38 -6
- package/translations/de.json +28 -2
- package/translations/en.json +59 -33
- package/translations/es.json +26 -0
- package/translations/fr.json +90 -64
- package/translations/it.json +28 -2
- package/translations/nl.json +26 -0
- package/translations/pt.json +26 -0
- package/translations/sk.json +26 -0
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +0 -96
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -19
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
- package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
- package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
- package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
- package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
- package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
- package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
- package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
- package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
- package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
- package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -39
- package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
- package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +0 -27
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -9
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
- package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
- package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
- package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
- package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
- package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
- package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -17
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
- package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
- package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
- package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
- package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
- package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -9
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -113
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
- package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
- package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
- package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
- package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
- package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
- package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
- package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
- package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
- package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -29
- package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
- package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
- /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → import-record/import-record.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → online-resource-card/online-resource-card.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → form-field-contacts/form-field-contacts.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → form-field-date-updated/form-field-date-updated.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-resource-updated/form-field-resource-updated.component.html → form-field-date-updated/form-field-date-updated.component.html} +0 -0
- /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
- /package/src/libs/feature/map/src/lib/{map-context/component/map-context.component.css → map-state-container/map-state-container.component.css} +0 -0
- /package/src/libs/ui/{map/src/lib/components/map/map.component.css → layout/src/lib/modal-dialog/modal-dialog.component.css} +0 -0
- /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
- /package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/map/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/map/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,yDAAyD,CAAA;AACvE,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,2CAA2C,CAAA;AACzD,cAAc,+DAA+D,CAAA;AAC7E,cAAc,0FAA0F,CAAA;AACxG,cAAc,qCAAqC,CAAA"}
|
|
@@ -1,40 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
export declare const updateLayer: import("@ngrx/store").ActionCreator<"[Map] Update Layer", (props: {
|
|
15
|
-
updatedLayer: MapLayer;
|
|
16
|
-
index: number;
|
|
17
|
-
}) => {
|
|
18
|
-
updatedLayer: MapLayer;
|
|
19
|
-
index: number;
|
|
20
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Map] Update Layer">>;
|
|
21
|
-
export declare const changeLayerOrder: import("@ngrx/store").ActionCreator<"[Map] Change Layer Order", (props: {
|
|
22
|
-
currentIndex: number;
|
|
23
|
-
newIndex: number;
|
|
24
|
-
}) => {
|
|
25
|
-
currentIndex: number;
|
|
26
|
-
newIndex: number;
|
|
27
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Map] Change Layer Order">>;
|
|
28
|
-
export declare const setLayerError: import("@ngrx/store").ActionCreator<"[Map] Set Layer Error", (props: {
|
|
29
|
-
index: number;
|
|
30
|
-
error: string;
|
|
31
|
-
}) => {
|
|
32
|
-
index: number;
|
|
33
|
-
error: string;
|
|
34
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Map] Set Layer Error">>;
|
|
35
|
-
export declare const clearLayerError: import("@ngrx/store").ActionCreator<"[Map] Clear Layer Error", (props: {
|
|
36
|
-
index: number;
|
|
37
|
-
}) => {
|
|
38
|
-
index: number;
|
|
39
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Map] Clear Layer Error">>;
|
|
1
|
+
import { MapContext } from '@geospatial-sdk/core';
|
|
2
|
+
import type { Feature } from 'geojson';
|
|
3
|
+
export declare const setContext: import("@ngrx/store").ActionCreator<"[Map] Set Context", (props: {
|
|
4
|
+
context: MapContext;
|
|
5
|
+
}) => {
|
|
6
|
+
context: MapContext;
|
|
7
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Map] Set Context">>;
|
|
8
|
+
export declare const setSelectedFeatures: import("@ngrx/store").ActionCreator<"[Map] Set Selected Features", (props: {
|
|
9
|
+
selectedFeatures: Feature[];
|
|
10
|
+
}) => {
|
|
11
|
+
selectedFeatures: Feature[];
|
|
12
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Map] Set Selected Features">>;
|
|
13
|
+
export declare const clearSelectedFeatures: import("@ngrx/store").ActionCreator<"[Map] Clear Selected Features", () => import("@ngrx/store/src/models").TypedAction<"[Map] Clear Selected Features">>;
|
|
40
14
|
//# sourceMappingURL=map.actions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.actions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"map.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.actions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAEtC,eAAO,MAAM,UAAU;aAEJ,UAAU;;aAAV,UAAU;sEAC5B,CAAA;AAED,eAAO,MAAM,mBAAmB;sBAEJ,OAAO,EAAE;;sBAAT,OAAO,EAAE;gFACpC,CAAA;AAED,eAAO,MAAM,qBAAqB,2JAEjC,CAAA"}
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import { Store } from '@ngrx/store';
|
|
2
|
-
import {
|
|
2
|
+
import { MapContext } from '@geospatial-sdk/core';
|
|
3
|
+
import { Feature } from 'geojson';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class MapFacade {
|
|
5
6
|
private readonly store;
|
|
6
|
-
|
|
7
|
+
context$: import("rxjs").Observable<MapContext>;
|
|
8
|
+
selectedFeatures$: import("rxjs").Observable<Feature<import("geojson").Geometry, {
|
|
9
|
+
[name: string]: any;
|
|
10
|
+
}>[]>;
|
|
7
11
|
constructor(store: Store);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*/
|
|
12
|
-
init(): void;
|
|
13
|
-
addLayer(layer: MapLayer): void;
|
|
14
|
-
addLayerAtIndex(layer: MapLayer, index: number): void;
|
|
15
|
-
removeLayer(index: number): void;
|
|
12
|
+
applyContext(context: MapContext): void;
|
|
13
|
+
selectFeatures(selectedFeatures: Feature[]): void;
|
|
14
|
+
clearFeatureSelection(): void;
|
|
16
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapFacade, never>;
|
|
17
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapFacade>;
|
|
18
17
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"map.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAG3C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;;AAEjC,qBACa,SAAS;IAIR,OAAO,CAAC,QAAQ,CAAC,KAAK;IAHlC,QAAQ,wCAAsD;IAC9D,iBAAiB;;UAA4D;gBAEhD,KAAK,EAAE,KAAK;IAEzC,YAAY,CAAC,OAAO,EAAE,UAAU;IAIhC,cAAc,CAAC,gBAAgB,EAAE,OAAO,EAAE;IAI1C,qBAAqB;yCAdV,SAAS;6CAAT,SAAS;CAiBrB"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { Action } from '@ngrx/store';
|
|
2
|
-
import {
|
|
2
|
+
import { MapContext } from '@geospatial-sdk/core';
|
|
3
|
+
import { Feature } from 'geojson';
|
|
3
4
|
export declare const MAP_FEATURE_KEY = "map";
|
|
4
5
|
export interface MapState {
|
|
5
|
-
|
|
6
|
+
context: MapContext;
|
|
7
|
+
selectedFeatures: Feature[];
|
|
6
8
|
}
|
|
7
9
|
export interface MapPartialState {
|
|
8
10
|
readonly [MAP_FEATURE_KEY]: MapState;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map.reducer.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAqB,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"map.reducer.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAqB,MAAM,aAAa,CAAA;AAEvD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AAEjC,eAAO,MAAM,eAAe,QAAQ,CAAA;AAEpC,MAAM,WAAW,QAAQ;IACvB,OAAO,EAAE,UAAU,CAAA;IACnB,gBAAgB,EAAE,OAAO,EAAE,CAAA;CAC5B;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,CAAC,eAAe,CAAC,EAAE,QAAQ,CAAA;CACrC;AAED,eAAO,MAAM,eAAe,EAAE,QAG7B,CAAA;AAwBD,wBAAgB,UAAU,CAAC,KAAK,EAAE,QAAQ,GAAG,SAAS,EAAE,MAAM,EAAE,MAAM,YAErE"}
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { MapState } from './map.reducer';
|
|
2
2
|
export declare const getMapState: import("@ngrx/store").MemoizedSelector<object, MapState, import("@ngrx/store").DefaultProjectorFn<MapState>>;
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const getMapContext: import("@ngrx/store").MemoizedSelector<object, import("@geospatial-sdk/core").MapContext, (s1: MapState) => import("@geospatial-sdk/core").MapContext>;
|
|
4
|
+
export declare const getSelectedFeatures: import("@ngrx/store").MemoizedSelector<object, import("geojson").Feature<import("geojson").Geometry, {
|
|
5
|
+
[name: string]: any;
|
|
6
|
+
}>[], (s1: MapState) => import("geojson").Feature<import("geojson").Geometry, {
|
|
7
|
+
[name: string]: any;
|
|
8
|
+
}>[]>;
|
|
4
9
|
//# sourceMappingURL=map.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map.selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAE,MAAM,eAAe,CAAA;AAGzD,eAAO,MAAM,WAAW,8GAAmD,CAAA;AAE3E,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"map.selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/+state/map.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAmB,QAAQ,EAAE,MAAM,eAAe,CAAA;AAGzD,eAAO,MAAM,WAAW,8GAAmD,CAAA;AAE3E,eAAO,MAAM,aAAa,wJAGzB,CAAA;AAED,eAAO,MAAM,mBAAmB;;;;KAG/B,CAAA"}
|
|
@@ -2,21 +2,19 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import { RecordPreviewComponent } from '../../../../../../../libs/ui/search/src';
|
|
3
3
|
import { LinkClassifierService } from '../../../../../../../libs/util/shared/src';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
|
-
import { MapUtilsService } from '../../utils';
|
|
6
5
|
import { MapFacade } from '../../+state/map.facade';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
6
|
+
import { DatasetOnlineResource } from '../../../../../../../libs/common/domain/src/lib/model/record';
|
|
7
|
+
import { MapContextLayer } from '@geospatial-sdk/core';
|
|
9
8
|
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
11
10
|
protected elementRef: ElementRef;
|
|
12
11
|
private linkClassifier;
|
|
13
12
|
private mapFacade;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
getLinkLabel(link: DatasetDistribution): string;
|
|
13
|
+
get mapLinks(): DatasetOnlineResource[];
|
|
14
|
+
constructor(elementRef: ElementRef, linkClassifier: LinkClassifierService, mapFacade: MapFacade);
|
|
15
|
+
handleLinkClick(link: DatasetOnlineResource): Promise<void>;
|
|
16
|
+
getLayerFromLink(link: DatasetOnlineResource): Observable<MapContextLayer>;
|
|
17
|
+
getLinkLabel(link: DatasetOnlineResource): string;
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddLayerRecordPreviewComponent, never>;
|
|
21
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerRecordPreviewComponent, "gn-ui-add-layer-record-preview", never, {}, {}, never, never, true, never>;
|
|
22
20
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-layer-record-preview.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,UAAU,EAAE,MAAM,eAAe,CAAA;AAC9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,yCAAyC,CAAA;AAChF,OAAO,EAEL,qBAAqB,EAEtB,MAAM,2CAA2C,CAAA;AAClD,OAAO,
|
|
1
|
+
{"version":3,"file":"add-layer-record-preview.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,UAAU,EAAE,MAAM,eAAe,CAAA;AAC9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,yCAAyC,CAAA;AAChF,OAAO,EAEL,qBAAqB,EAEtB,MAAM,2CAA2C,CAAA;AAClD,OAAO,EAAkB,UAAU,EAAkB,MAAM,MAAM,CAAA;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAA;AACnD,OAAO,EACL,qBAAqB,EAEtB,MAAM,8DAA8D,CAAA;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;;AAKtD,qBAQa,8BAA+B,SAAQ,sBAAsB;IAQtE,SAAS,CAAC,UAAU,EAAE,UAAU;IAChC,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,SAAS;IATnB,IAAI,QAAQ,IAAI,qBAAqB,EAAE,CAItC;gBAGW,UAAU,EAAE,UAAU,EACxB,cAAc,EAAE,qBAAqB,EACrC,SAAS,EAAE,SAAS;IAKxB,eAAe,CAAC,IAAI,EAAE,qBAAqB;IASjD,gBAAgB,CAAC,IAAI,EAAE,qBAAqB,GAAG,UAAU,CAAC,eAAe,CAAC;IAqB1E,YAAY,CAAC,IAAI,EAAE,qBAAqB;yCA7C7B,8BAA8B;2CAA9B,8BAA8B;CAgD1C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-layer-from-file.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"add-layer-from-file.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAA;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAShD,qBAOa,yBAAyB;IAQlC,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAR3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAO;IACpC,OAAO,UAAQ;IACf,QAAQ,CAAC,gBAAgB,WAAe;IACxC,QAAQ,CAAC,WAAW,WAAU;gBAGpB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAGxC,gBAAgB,CAAC,IAAI,EAAE,IAAI;YAYnB,QAAQ;IA0BtB,OAAO,CAAC,eAAe;IA4BvB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,cAAc;yCAvFX,yBAAyB;2CAAzB,yBAAyB;CAoGrC"}
|
package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { DropdownChoice } from '../../../../../../libs/ui/inputs/src';
|
|
4
|
-
import {
|
|
4
|
+
import { MapContextLayer } from '@geospatial-sdk/core';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class AddLayerFromOgcApiComponent implements OnInit {
|
|
7
7
|
private changeDetectorRef;
|
|
8
8
|
ogcUrl: string;
|
|
9
|
-
layerAdded: EventEmitter<
|
|
9
|
+
layerAdded: EventEmitter<MapContextLayer>;
|
|
10
10
|
urlChange: Subject<string>;
|
|
11
11
|
loading: boolean;
|
|
12
12
|
layers: any[];
|
package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-layer-from-ogc-api.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEjB,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAgB,OAAO,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"add-layer-from-ogc-api.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEjB,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAgB,OAAO,EAAE,MAAM,MAAM,CAAA;AAE5C,OAAO,EACL,cAAc,EAGf,MAAM,sCAAsC,CAAA;AAE7C,OAAO,EAAE,eAAe,EAAyB,MAAM,sBAAsB,CAAA;;AAE7E,qBAOa,2BAA4B,YAAW,MAAM;IAU5C,OAAO,CAAC,iBAAiB;IAT5B,MAAM,EAAE,MAAM,CAAA;IACb,UAAU,gCAAsC;IAE1D,SAAS,kBAAwB;IACjC,OAAO,UAAQ;IACf,MAAM,EAAE,GAAG,EAAE,CAAK;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,kBAAkB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,CAAA;KAAE,CAAK;gBAE/C,iBAAiB,EAAE,iBAAiB;IAExD,QAAQ;IAMF,UAAU;IAqBhB,oBAAoB;IASpB,eAAe,CAAC,KAAK,EAAE,GAAG;IAiB1B,kBAAkB,CAAC,KAAK,EAAE,GAAG;IAS7B,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG;IAMhD,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG;yCAhFjC,2BAA2B;2CAA3B,2BAA2B;CA8GvC"}
|
|
@@ -15,7 +15,7 @@ export declare class AddLayerFromWfsComponent implements OnInit {
|
|
|
15
15
|
constructor(mapFacade: MapFacade, changeDetectorRef: ChangeDetectorRef);
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
loadLayers(): Promise<void>;
|
|
18
|
-
addLayer(layer: WfsFeatureTypeBrief): void
|
|
18
|
+
addLayer(layer: WfsFeatureTypeBrief): Promise<void>;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddLayerFromWfsComponent, never>;
|
|
20
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerFromWfsComponent, "gn-ui-add-layer-from-wfs", never, {}, {}, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-layer-from-wfs.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AACzE,OAAO,
|
|
1
|
+
{"version":3,"file":"add-layer-from-wfs.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AACzE,OAAO,EAAkB,OAAO,EAAE,MAAM,MAAM,CAAA;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAOhD,qBAOa,wBAAyB,YAAW,MAAM;IASnD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAT3B,MAAM,SAAK;IACX,OAAO,UAAQ;IACf,MAAM,EAAE,mBAAmB,EAAE,CAAK;IAClC,WAAW,EAAE,WAAW,GAAG,IAAI,CAAO;IACtC,SAAS,kBAAwB;IACjC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAG9C,QAAQ;IAIF,UAAU;IAuBV,QAAQ,CAAC,KAAK,EAAE,mBAAmB;yCAxC9B,wBAAwB;2CAAxB,wBAAwB;CAqDpC"}
|
|
@@ -15,7 +15,7 @@ export declare class AddLayerFromWmsComponent implements OnInit {
|
|
|
15
15
|
constructor(mapFacade: MapFacade, changeDetectorRef: ChangeDetectorRef);
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
loadLayers(): Promise<void>;
|
|
18
|
-
addLayer(layer: WmsLayerSummary): void
|
|
18
|
+
addLayer(layer: WmsLayerSummary): Promise<void>;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddLayerFromWmsComponent, never>;
|
|
20
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerFromWmsComponent, "gn-ui-add-layer-from-wms", never, {}, {}, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-layer-from-wms.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"add-layer-from-wms.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,EAAE,MAAM,eAAe,CAAA;AACpE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAChD,OAAO,EAAkB,OAAO,EAAE,MAAM,MAAM,CAAA;;AAO9C,qBAOa,wBAAyB,YAAW,MAAM;IASnD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,iBAAiB;IAT3B,MAAM,SAAK;IACX,OAAO,UAAQ;IACf,MAAM,EAAE,eAAe,EAAE,CAAK;IAC9B,WAAW,EAAE,WAAW,GAAG,IAAI,CAAO;IACtC,SAAS,kBAAwB;IACjC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,iBAAiB,EAAE,iBAAiB;IAG9C,QAAQ;IAIF,UAAU;IAsBV,QAAQ,CAAC,KAAK,EAAE,eAAe;yCAvC1B,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/constant/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/constant/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA"}
|
|
@@ -1,24 +1,18 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "@
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "@ngrx/store";
|
|
14
|
-
import * as i13 from "@ngrx/effects";
|
|
15
|
-
import * as i14 from "../../../../ui/elements/src/lib/ui-elements.module";
|
|
16
|
-
import * as i15 from "../../../../ui/inputs/src/lib/ui-inputs.module";
|
|
17
|
-
import * as i16 from "./add-layer-from-ogc-api/add-layer-from-ogc-api.component";
|
|
18
|
-
import * as i17 from "../../../../ui/inputs/src/lib/text-input/text-input.component";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "../../../../ui/layout/src/lib/ui-layout.module";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
import * as i4 from "@angular/material/tabs";
|
|
6
|
+
import * as i5 from "@ngx-translate/core";
|
|
7
|
+
import * as i6 from "../../../search/src/lib/feature-search.module";
|
|
8
|
+
import * as i7 from "@ngrx/store";
|
|
9
|
+
import * as i8 from "../../../../ui/elements/src/lib/ui-elements.module";
|
|
10
|
+
import * as i9 from "../../../../ui/inputs/src/lib/ui-inputs.module";
|
|
11
|
+
import * as i10 from "./add-layer-from-ogc-api/add-layer-from-ogc-api.component";
|
|
12
|
+
import * as i11 from "../../../../ui/inputs/src/lib/text-input/text-input.component";
|
|
19
13
|
export declare class FeatureMapModule {
|
|
20
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureMapModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureMapModule,
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureMapModule, never, [typeof i1.CommonModule, typeof i2.UiLayoutModule, typeof i3.MatIconModule, typeof i4.MatTabsModule, typeof i5.TranslateModule, typeof i6.FeatureSearchModule, typeof i7.StoreFeatureModule, typeof i8.UiElementsModule, typeof i9.UiInputsModule, typeof i10.AddLayerFromOgcApiComponent, typeof i11.TextInputComponent], never>;
|
|
22
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureMapModule>;
|
|
23
17
|
}
|
|
24
18
|
//# sourceMappingURL=feature-map.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-map.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/map/src/lib/feature-map.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"feature-map.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/map/src/lib/feature-map.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAeA,qBAsBa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
|
-
import { MapManagerService } from '../manager/map-manager.service';
|
|
4
3
|
import { GeocodingService } from '../geocoding.service';
|
|
4
|
+
import { MapFacade } from '../+state/map.facade';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class GeocodingComponent implements OnDestroy {
|
|
7
|
-
private
|
|
7
|
+
private mapFacade;
|
|
8
8
|
private geocodingService;
|
|
9
9
|
searchText: string;
|
|
10
10
|
results: any[];
|
|
11
11
|
searchTextChanged: Subject<string>;
|
|
12
12
|
destroy$: Subject<void>;
|
|
13
13
|
errorMessage: string | null;
|
|
14
|
-
constructor(
|
|
14
|
+
constructor(mapFacade: MapFacade, geocodingService: GeocodingService);
|
|
15
15
|
ngOnDestroy(): void;
|
|
16
16
|
onSearchChange(searchText: string): void;
|
|
17
17
|
clearSearch(): void;
|
|
18
|
-
zoomToLocation(result: any): void
|
|
19
|
-
zoomToPoint(pointCoords: [number, number]
|
|
20
|
-
zoomToPolygon(polygonCoords: [[number, number][]]
|
|
18
|
+
zoomToLocation(result: any): Promise<void>;
|
|
19
|
+
zoomToPoint(pointCoords: [number, number]): Promise<void>;
|
|
20
|
+
zoomToPolygon(polygonCoords: [[number, number][]]): Promise<void>;
|
|
21
21
|
onEnterPress(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<GeocodingComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GeocodingComponent, "gn-ui-geocoding", never, {}, {}, never, never,
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GeocodingComponent, "gn-ui-geocoding", never, {}, {}, never, never, true, never>;
|
|
24
24
|
}
|
|
25
25
|
//# sourceMappingURL=geocoding.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geocoding.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/geocoding/geocoding.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,
|
|
1
|
+
{"version":3,"file":"geocoding.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/geocoding/geocoding.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EAAoC,OAAO,EAAa,MAAM,MAAM,CAAA;AAE3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;AAMhD,qBAYa,kBAAmB,YAAW,SAAS;IAQhD,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,gBAAgB;IAR1B,UAAU,SAAK;IACf,OAAO,EAAE,GAAG,EAAE,CAAK;IACnB,iBAAiB,kBAAwB;IACzC,QAAQ,gBAAsB;IAC9B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAGxB,SAAS,EAAE,SAAS,EACpB,gBAAgB,EAAE,gBAAgB;IAsB5C,WAAW;IAKX,cAAc,CAAC,UAAU,EAAE,MAAM;IASjC,WAAW;IAML,cAAc,CAAC,MAAM,EAAE,GAAG;IAY1B,WAAW,CAAC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC;IAYzC,aAAa,CAAC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IAcvD,YAAY;yCAzFD,kBAAkB;2CAAlB,kBAAkB;CA8F9B"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { MapFacade } from '../+state/map.facade';
|
|
2
|
+
import { MapContextLayer } from '@geospatial-sdk/core';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class LayersPanelComponent {
|
|
4
5
|
private mapFacade;
|
|
5
|
-
layers$: import("rxjs").Observable<
|
|
6
|
+
layers$: import("rxjs").Observable<MapContextLayer[]>;
|
|
6
7
|
ogcUrl: string;
|
|
7
8
|
constructor(mapFacade: MapFacade);
|
|
8
|
-
deleteLayer(index: number): void
|
|
9
|
-
addLayer(layer:
|
|
9
|
+
deleteLayer(index: number): Promise<void>;
|
|
10
|
+
addLayer(layer: MapContextLayer): Promise<void>;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayersPanelComponent, never>;
|
|
11
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayersPanelComponent, "gn-ui-layers-panel", never, {}, {}, never, never, true, never>;
|
|
12
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"layers-panel.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;;
|
|
1
|
+
{"version":3,"file":"layers-panel.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAEhD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;;AAYtD,qBAmBa,oBAAoB;IAGnB,OAAO,CAAC,SAAS;IAF7B,OAAO,+CAAiE;IACxE,MAAM,SAAK;gBACS,SAAS,EAAE,SAAS;IAElC,WAAW,CAAC,KAAK,EAAE,MAAM;IAQzB,QAAQ,CAAC,KAAK,EAAE,eAAe;yCAb1B,oBAAoB;2CAApB,oBAAoB;CAoBhC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { MapFacade } from '../+state/map.facade';
|
|
3
|
+
import { MapContext } from '@geospatial-sdk/core';
|
|
4
|
+
import { Feature } from 'geojson';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MapStateContainerComponent {
|
|
7
|
+
private mapFacade;
|
|
8
|
+
context$: Observable<MapContext>;
|
|
9
|
+
constructor(mapFacade: MapFacade);
|
|
10
|
+
handleFeaturesClicked(features: Feature[]): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapStateContainerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapStateContainerComponent, "gn-ui-map-state-container", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=map-state-container.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map-state-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAGjD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;;AAEjC,qBAQa,0BAA0B;IAGzB,OAAO,CAAC,SAAS;IAF7B,QAAQ,EAAE,UAAU,CAAC,UAAU,CAAC,CAA0B;gBAEtC,SAAS,EAAE,SAAS;IAExC,qBAAqB,CAAC,QAAQ,EAAE,OAAO,EAAE;yCAL9B,0BAA0B;2CAA1B,0BAA0B;CAYtC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { Style } from 'ol/style';
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
2
|
+
export declare const defaultMapStyleFixture: () => Style;
|
|
3
|
+
export declare const defaultMapStyleHlFixture: () => Style;
|
|
4
4
|
//# sourceMappingURL=map-style.fixtures.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map-style.fixtures.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/style/map-style.fixtures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,EAAE,MAAM,UAAU,CAAA;AAMtD,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"map-style.fixtures.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/style/map-style.fixtures.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,EAAE,MAAM,UAAU,CAAA;AAMtD,eAAO,MAAM,sBAAsB,QAAO,KAmBtC,CAAA;AAEJ,eAAO,MAAM,wBAAwB,QAAO,KAmBxC,CAAA"}
|
|
@@ -1,39 +1,9 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import type { FeatureCollection } from 'geojson';
|
|
3
1
|
import { Extent } from 'ol/extent';
|
|
4
|
-
import Feature from 'ol/Feature';
|
|
5
|
-
import { Geometry } from 'ol/geom';
|
|
6
|
-
import Layer from 'ol/layer/Layer';
|
|
7
|
-
import Map from 'ol/Map';
|
|
8
|
-
import Source from 'ol/source/Source';
|
|
9
|
-
import { DragPan, Interaction, MouseWheelZoom } from 'ol/interaction';
|
|
10
|
-
import { Observable } from 'rxjs';
|
|
11
|
-
import { MapContextLayerModel, MapContextLayerWmsModel } from '../map-context/map-context.model';
|
|
12
|
-
import Collection from 'ol/Collection';
|
|
13
|
-
import MapBrowserEvent from 'ol/MapBrowserEvent';
|
|
14
2
|
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
15
|
-
import { ProxyService } from '../../../../../../libs/util/shared/src';
|
|
16
3
|
import * as i0 from "@angular/core";
|
|
17
4
|
export declare class MapUtilsService {
|
|
18
|
-
private http;
|
|
19
|
-
private proxy;
|
|
20
|
-
constructor(http: HttpClient, proxy: ProxyService);
|
|
21
|
-
createEmptyMap(): Map;
|
|
22
|
-
readFeatureCollection: (featureCollection: FeatureCollection, featureProjection?: string, dataProjection?: string) => Feature<Geometry>[];
|
|
23
|
-
isWMSLayer(layer: Layer<Source>): boolean;
|
|
24
|
-
getGFIUrl(layer: any, map: any, coordinate: any): string;
|
|
25
|
-
getVectorFeaturesFromClick(olMap: any, event: any): Feature<Geometry>[];
|
|
26
|
-
getGFIFeaturesObservablesFromClick(olMap: Map, event: MapBrowserEvent<PointerEvent>): Observable<Feature<Geometry>[]>[];
|
|
27
|
-
/**
|
|
28
|
-
* Will emit `null` if no extent could be computed
|
|
29
|
-
*/
|
|
30
|
-
getLayerExtent(layer: MapContextLayerModel): Promise<Extent | null>;
|
|
31
|
-
getWmsLayerExtent(layer: MapContextLayerWmsModel): Promise<Extent | null>;
|
|
32
|
-
prioritizePageScroll(interactions: Collection<Interaction>): void;
|
|
33
5
|
getRecordExtent(record: Partial<CatalogRecord>): Extent;
|
|
34
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
|
|
35
7
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
|
|
36
8
|
}
|
|
37
|
-
export declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
|
|
38
|
-
export declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<UIEvent>): boolean;
|
|
39
9
|
//# sourceMappingURL=map-utils.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map-utils.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/utils/map-utils.service.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"map-utils.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/utils/map-utils.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,MAAM,EAAE,MAAM,WAAW,CAAA;AAG1C,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAIzF,qBAGa,eAAe;IAC1B,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,MAAM;yCAD5C,eAAe;6CAAf,eAAe;CAmB3B"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { BehaviorSubject } from 'rxjs';
|
|
2
2
|
import { MdViewFacade } from '../state';
|
|
3
3
|
import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
|
|
4
|
-
import {
|
|
4
|
+
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DataViewComponent {
|
|
7
7
|
private mdViewFacade;
|
|
8
8
|
mode: 'table' | 'chart';
|
|
9
9
|
chartConfig$: BehaviorSubject<DatavizConfigurationModel>;
|
|
10
|
-
compatibleDataLinks$: import("rxjs").Observable<
|
|
10
|
+
compatibleDataLinks$: import("rxjs").Observable<DatasetOnlineResource[]>;
|
|
11
11
|
dropdownChoices$: import("rxjs").Observable<{
|
|
12
12
|
label: string;
|
|
13
13
|
value: string;
|
|
14
14
|
}[]>;
|
|
15
|
-
selectedLink$: BehaviorSubject<
|
|
15
|
+
selectedLink$: BehaviorSubject<DatasetOnlineResource>;
|
|
16
16
|
constructor(mdViewFacade: MdViewFacade);
|
|
17
17
|
setChartConfig(event: DatavizConfigurationModel): void;
|
|
18
18
|
selectLink(linkAsString: string): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view/data-view.component.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,eAAe,EAAiB,MAAM,MAAM,CAAA;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AACvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"data-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/data-view/data-view.component.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,eAAe,EAAiB,MAAM,MAAM,CAAA;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AACvC,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;;AAEjG,qBAMa,iBAAiB;IA4BhB,OAAO,CAAC,YAAY;IA3BvB,IAAI,EAAE,OAAO,GAAG,OAAO,CAAA;IACtB,YAAY,6CAAuD;IAC7E,oBAAoB,qDASnB;IACD,gBAAgB;;;SAYf;IACD,aAAa,yCAAmD;gBAE5C,YAAY,EAAE,YAAY;IAE9C,cAAc,CAAC,KAAK,EAAE,yBAAyB;IAI/C,UAAU,CAAC,YAAY,EAAE,MAAM;yCAlCpB,iBAAiB;2CAAjB,iBAAiB;CAuC7B"}
|
package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const EXTERNAL_VIEWER_URL_TEMPLATE: InjectionToken<string>;
|
|
6
|
+
export declare const EXTERNAL_VIEWER_OPEN_NEW_TAB: InjectionToken<boolean>;
|
|
5
7
|
export declare class ExternalViewerButtonComponent {
|
|
6
8
|
private translateService;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
private urlTemplate;
|
|
10
|
+
private openinNewTab;
|
|
11
|
+
link: DatasetOnlineResource;
|
|
9
12
|
get externalViewer(): boolean;
|
|
10
13
|
get supportedLinkLayerType(): "wms" | "wfs" | "geojson";
|
|
11
|
-
constructor(translateService: TranslateService);
|
|
14
|
+
constructor(translateService: TranslateService, urlTemplate: string, openinNewTab: boolean);
|
|
12
15
|
openInExternalViewer(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalViewerButtonComponent,
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExternalViewerButtonComponent, "gn-ui-external-viewer-button", never, { "link": { "alias": "link"; "required": false; };
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalViewerButtonComponent, [null, { optional: true; }, null]>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExternalViewerButtonComponent, "gn-ui-external-viewer-button", never, { "link": { "alias": "link"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
18
|
}
|
|
16
19
|
//# sourceMappingURL=external-viewer-button.component.d.ts.map
|
package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"external-viewer-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"external-viewer-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,cAAc,EAGf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;AAEjG,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAKtD,eAAO,MAAM,4BAA4B,wBAExC,CAAA;AACD,eAAO,MAAM,4BAA4B,yBAGxC,CAAA;AAED,qBAMa,6BAA6B;IA0BtC,OAAO,CAAC,gBAAgB;IAGxB,OAAO,CAAC,WAAW;IAEnB,OAAO,CAAC,YAAY;IA9Bb,IAAI,EAAE,qBAAqB,CAAA;IAEpC,IAAI,cAAc,YAEjB;IAED,IAAI,sBAAsB,8BAgBzB;gBAGS,gBAAgB,EAAE,gBAAgB,EAGlC,WAAW,EAAE,MAAM,EAEnB,YAAY,EAAE,OAAO;IAG/B,oBAAoB;yCAlCT,6BAA6B;2CAA7B,6BAA6B;CAgDzC"}
|
|
@@ -11,19 +11,21 @@ import * as i9 from "@ngrx/effects";
|
|
|
11
11
|
import * as i10 from "../../../../ui/layout/src/lib/ui-layout.module";
|
|
12
12
|
import * as i11 from "../../../map/src/lib/feature-map.module";
|
|
13
13
|
import * as i12 from "../../../catalog/src/lib/feature-catalog.module";
|
|
14
|
-
import * as i13 from "../../../../ui/
|
|
15
|
-
import * as i14 from "../../../../ui/
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "@angular/material/
|
|
18
|
-
import * as i17 from "
|
|
19
|
-
import * as i18 from "
|
|
20
|
-
import * as i19 from "
|
|
21
|
-
import * as i20 from "
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "../../../../ui/
|
|
14
|
+
import * as i13 from "../../../../ui/inputs/src/lib/ui-inputs.module";
|
|
15
|
+
import * as i14 from "../../../../ui/elements/src/lib/ui-elements.module";
|
|
16
|
+
import * as i15 from "@angular/material/tabs";
|
|
17
|
+
import * as i16 from "@angular/material/icon";
|
|
18
|
+
import * as i17 from "../../../../ui/widgets/src/lib/ui-widgets.module";
|
|
19
|
+
import * as i18 from "@ngx-translate/core";
|
|
20
|
+
import * as i19 from "../../../../ui/dataviz/src/lib/table/table.component";
|
|
21
|
+
import * as i20 from "../../../dataviz/src/lib/feature-dataviz.module";
|
|
22
|
+
import * as i21 from "../../../../ui/widgets/src/lib/popup-alert/popup-alert.component";
|
|
23
|
+
import * as i22 from "../../../../ui/map/src/lib/components/feature-detail/feature-detail.component";
|
|
24
|
+
import * as i23 from "../../../map/src/lib/map-state-container/map-state-container.component";
|
|
25
|
+
import * as i24 from "../../../../ui/map/src/lib/components/map-container/map-container.component";
|
|
24
26
|
export declare class FeatureRecordModule {
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureRecordModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureRecordModule, [typeof i1.MapViewComponent, typeof i2.DataViewComponent, typeof i3.ExternalViewerButtonComponent, typeof i4.DataViewPermalinkComponent, typeof i5.DataViewWebComponentComponent, typeof i6.DataViewShareComponent], [typeof i7.CommonModule, typeof i8.StoreFeatureModule, typeof i9.EffectsFeatureModule, typeof i10.UiLayoutModule, typeof i11.FeatureMapModule, typeof i12.FeatureCatalogModule, typeof i13.
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureRecordModule, [typeof i1.MapViewComponent, typeof i2.DataViewComponent, typeof i3.ExternalViewerButtonComponent, typeof i4.DataViewPermalinkComponent, typeof i5.DataViewWebComponentComponent, typeof i6.DataViewShareComponent], [typeof i7.CommonModule, typeof i8.StoreFeatureModule, typeof i9.EffectsFeatureModule, typeof i10.UiLayoutModule, typeof i11.FeatureMapModule, typeof i12.FeatureCatalogModule, typeof i13.UiInputsModule, typeof i14.UiElementsModule, typeof i15.MatTabsModule, typeof i16.MatIconModule, typeof i17.UiWidgetsModule, typeof i18.TranslateModule, typeof i19.TableComponent, typeof i20.FeatureDatavizModule, typeof i21.PopupAlertComponent, typeof i22.FeatureDetailComponent, typeof i23.MapStateContainerComponent, typeof i24.MapContainerComponent], [typeof i1.MapViewComponent, typeof i2.DataViewComponent, typeof i4.DataViewPermalinkComponent, typeof i5.DataViewWebComponentComponent, typeof i6.DataViewShareComponent]>;
|
|
27
29
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
|
|
28
30
|
}
|
|
29
31
|
//# sourceMappingURL=feature-record.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAmCA,qBAsCa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
|