├── projects
├── test-app
│ ├── README.md
│ ├── src
│ │ ├── assets
│ │ │ ├── .gitkeep
│ │ │ └── locales
│ │ │ │ └── la.json
│ │ ├── locale
│ │ │ └── .gitkeep
│ │ ├── favicon.ico
│ │ ├── hslayers-app
│ │ │ ├── hslayers-app.component.scss
│ │ │ ├── hslayers-app.component.html
│ │ │ ├── popup-widget.component.html
│ │ │ ├── hslayers-app.module.ts
│ │ │ ├── popup-widget.component.ts
│ │ │ └── some-panel
│ │ │ │ ├── some-panel.component.ts
│ │ │ │ └── some-panel.module.ts
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ ├── environment.hmr.ts
│ │ │ └── environment.ts
│ │ ├── styles.scss
│ │ └── index.html
│ ├── custom-icons.txt
│ ├── package-lock.json
│ ├── custom-webpack.config.js
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── test
│ │ └── test.ts
├── cesium-test-app
│ ├── README.md
│ ├── src
│ │ ├── app
│ │ │ ├── app.component.sass
│ │ │ ├── app.component.html
│ │ │ └── app.module.ts
│ │ ├── styles.sass
│ │ ├── favicon.ico
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ └── environment.ts
│ │ └── main.ts
│ ├── package-lock.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── custom-webpack.config.js
│ └── test
│ │ └── test.ts
├── decoupling-test-app
│ ├── README.md
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── locale
│ │ │ └── .gitkeep
│ │ ├── hslayers-app
│ │ │ ├── hslayers-app.component.sass
│ │ │ └── hslayers-app.component.html
│ │ ├── styles.sass
│ │ ├── favicon.ico
│ │ └── main.ts
│ ├── package-lock.json
│ ├── custom-webpack.config.js
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── test
│ │ └── test.ts
├── hslayers-app
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── locale
│ │ │ └── .gitkeep
│ │ ├── hslayers-app
│ │ │ ├── hslayers-app.component.sass
│ │ │ └── hslayers-app.component.html
│ │ ├── styles.sass
│ │ ├── favicon.ico
│ │ ├── environments
│ │ │ ├── environment.prod.ts
│ │ │ ├── environment.hmr.ts
│ │ │ └── environment.ts
│ │ └── main.ts
│ ├── tsconfig.app.json
│ ├── package-lock.json
│ ├── tsconfig.spec.json
│ ├── custom-webpack.config.js
│ └── test
│ │ └── test.ts
├── hslayers-cesium-app
│ ├── src
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── app
│ │ │ ├── app.component.sass
│ │ │ └── app.component.html
│ │ ├── styles.sass
│ │ ├── environments
│ │ │ └── environment.prod.ts
│ │ ├── favicon.ico
│ │ └── main.ts
│ ├── package-lock.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── custom-webpack.config.js
│ └── test
│ │ └── test.ts
├── hslayers
│ ├── config
│ │ ├── index.ts
│ │ ├── ng-package.json
│ │ └── public-api.ts
│ ├── core
│ │ ├── index.ts
│ │ ├── map
│ │ │ ├── map.component.html
│ │ │ └── map.directive.ts
│ │ ├── ng-package.json
│ │ ├── map-host.directive.ts
│ │ ├── layout.directive.ts
│ │ └── public-api.ts
│ ├── types
│ │ ├── index.ts
│ │ ├── map-swipe.type.ts
│ │ ├── add-data
│ │ │ ├── datasetType.type.ts
│ │ │ ├── async-upload.type.ts
│ │ │ ├── overwrite-response.ts
│ │ │ ├── file
│ │ │ │ ├── file-descriptor.type.ts
│ │ │ │ ├── file.type.ts
│ │ │ │ ├── file-data-object.type.ts
│ │ │ │ └── file-form-data.type.ts
│ │ │ ├── services-supported.const.ts
│ │ │ ├── url.type.ts
│ │ │ ├── recursive-options.type.ts
│ │ │ └── arcgis-response-type.ts
│ │ ├── utils
│ │ │ └── measurement.ts
│ │ ├── access-rights.model.ts
│ │ ├── get-capabilities
│ │ │ └── capabilities-response-wrapper.ts
│ │ ├── bounding-box-object.type.ts
│ │ ├── query
│ │ │ ├── widget-item.type.ts
│ │ │ └── widgets.type.ts
│ │ ├── ng-package.json
│ │ ├── type-intersection.type.ts
│ │ ├── authentication.ts
│ │ ├── wfs-filter
│ │ │ └── wfs-attributes.type.ts
│ │ ├── layer-manager
│ │ │ ├── folder.type.ts
│ │ │ ├── terrain-layer-descriptor.type.ts
│ │ │ └── hs-sublayer.interface.ts
│ │ ├── compositions
│ │ │ ├── user-data.type.ts
│ │ │ ├── serialized-image.type.ts
│ │ │ ├── serialized-style.type.ts
│ │ │ └── composition-data.type.ts
│ │ ├── button.interface.ts
│ │ ├── clicked-coordinates.type.ts
│ │ ├── layman
│ │ │ ├── upsert-layer-object.type.ts
│ │ │ ├── status-state.type.ts
│ │ │ ├── about-layman-response.type.ts
│ │ │ └── get-layers.interface.ts
│ │ ├── save-map
│ │ │ ├── status-data.type.ts
│ │ │ └── wfs-sync-params.type.ts
│ │ ├── feature-descriptor.ts
│ │ ├── filters
│ │ │ └── filter-types.ts
│ │ └── dom-feature-link.type.ts
│ ├── common
│ │ ├── pager
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── pager.module.ts
│ │ ├── pipes
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── filter.pipe.ts
│ │ ├── toast
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── add-to-map
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── confirm
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── dialogs
│ │ │ ├── index.ts
│ │ │ ├── dialog-container.component.html
│ │ │ ├── ng-package.json
│ │ │ ├── dialog-component.interface.ts
│ │ │ ├── dialog-host.directive.ts
│ │ │ ├── public-api.ts
│ │ │ ├── dialog-item.ts
│ │ │ └── compositions-warning
│ │ │ │ └── warning-dialog.component.ts
│ │ ├── dimensions
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── download
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── extensions
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── filters
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── layers
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── layman
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── types
│ │ │ │ ├── get-layers-response.type.ts
│ │ │ │ ├── post-patch-layer-response.type.ts
│ │ │ │ ├── current-user-response.type.ts
│ │ │ │ └── delete-layer-response.type.ts
│ │ │ ├── parse-base64-style.ts
│ │ │ └── public-api.ts
│ │ ├── panels
│ │ │ ├── index.ts
│ │ │ ├── panel-container.component.html
│ │ │ ├── ng-package.json
│ │ │ ├── panel-item.ts
│ │ │ ├── panel-host.directive.ts
│ │ │ ├── panel-helpers.module.ts
│ │ │ ├── panel-component.interface.ts
│ │ │ ├── public-api.ts
│ │ │ └── panel-container.service.interface.ts
│ │ ├── upload
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── upload.module.ts
│ │ ├── widgets
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── clipboard-text
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── history-list
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ ├── history-list.component.html
│ │ │ └── history-list.module.ts
│ │ ├── layer-table
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ └── wms-layer-highlight.directive.ts
│ │ ├── query-popup
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── widgets
│ │ │ │ ├── layer-name.component.html
│ │ │ │ ├── dynamic-text.component.html
│ │ │ │ └── clear-layer.component.html
│ │ │ ├── popup-data.ts
│ │ │ └── public-api.ts
│ │ ├── remove-multiple
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── remove-layer-dialog.module.ts
│ │ ├── color-map-picker
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── colormap-picker.module.ts
│ │ ├── dialog-csw-layers
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── csw-layers-dialog.component.scss
│ │ ├── get-feature-info
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── json-get-feature-info.type.ts
│ │ └── dialog-set-permissions
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ ├── services
│ │ ├── log
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── log.service.ts
│ │ ├── map
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── add-data
│ │ │ ├── index.ts
│ │ │ └── ng-package.json
│ │ ├── draw
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── external
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── language
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── layout
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── panels
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ ├── overlay
│ │ │ │ └── overlay-container.service.ts
│ │ │ └── toolbar
│ │ │ │ └── toolbar-panel-container.service.ts
│ │ ├── query
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── queues
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── save-map
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ └── saver-service.interface.ts
│ │ ├── share
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── sidebar
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── styler
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── style-part-base.component.ts
│ │ ├── utils
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ ├── attribution-utils.ts
│ │ │ └── format-utils.ts
│ │ ├── compositions
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── endpoints
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── event-bus
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── layer-manager
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── get-capabilities
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ └── get-capabilities.interface.ts
│ │ ├── layer-shifting
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ └── panel-constructor
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ ├── components
│ │ ├── draw
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── info
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── info.module.ts
│ │ ├── legend
│ │ │ ├── index.ts
│ │ │ ├── legend-layer-vector
│ │ │ │ ├── legend-layer-vector.component.html
│ │ │ │ └── legend-layer-vector.component.ts
│ │ │ ├── ng-package.json
│ │ │ ├── legend-layer-static
│ │ │ │ ├── legend-layer-static.component.html
│ │ │ │ └── types
│ │ │ │ │ └── layer-legend.type.ts
│ │ │ ├── legend-descriptor.interface.ts
│ │ │ ├── legend-custom-category.type.ts
│ │ │ └── public-api.ts
│ │ ├── print
│ │ │ ├── index.ts
│ │ │ ├── types
│ │ │ │ ├── styler.type.ts
│ │ │ │ ├── title-object.type.ts
│ │ │ │ ├── legend-object.type.ts
│ │ │ │ ├── xy-positions.type.ts
│ │ │ │ ├── imprint-object.type.ts
│ │ │ │ ├── scale-object.type.ts
│ │ │ │ ├── text-style.type.ts
│ │ │ │ └── print-object.type.ts
│ │ │ ├── ng-package.json
│ │ │ ├── constants
│ │ │ │ ├── position-options.ts
│ │ │ │ └── scale-styling-options.ts
│ │ │ └── imprint-styler
│ │ │ │ └── imprint-styler.component.ts
│ │ ├── query
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── query.tokens.ts
│ │ │ ├── public-api.ts
│ │ │ └── attribute-row
│ │ │ │ └── attribute-row.component.html
│ │ ├── search
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── limitTo.pipe.ts
│ │ │ ├── public-api.ts
│ │ │ ├── search.component.html
│ │ │ └── search-input.component.html
│ │ ├── share
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── styler
│ │ │ ├── index.ts
│ │ │ ├── img
│ │ │ │ └── convert.sh
│ │ │ ├── ng-package.json
│ │ │ ├── symbolizers
│ │ │ │ ├── symbolizer-kind.enum.ts
│ │ │ │ ├── symbolizer.component.ts
│ │ │ │ └── slider
│ │ │ │ │ ├── slider.component.html
│ │ │ │ │ └── slider.component.ts
│ │ │ ├── styles.ts
│ │ │ └── edit-dialog
│ │ │ │ └── edit-dialog.component.ts
│ │ ├── add-data
│ │ │ ├── index.ts
│ │ │ ├── file
│ │ │ │ ├── shp
│ │ │ │ │ └── public-api.ts
│ │ │ │ ├── raster
│ │ │ │ │ ├── public-api.ts
│ │ │ │ │ └── raster-timeseries
│ │ │ │ │ │ └── raster-timeseries.component.scss
│ │ │ │ ├── public-api.ts
│ │ │ │ └── file-type-values.ts
│ │ │ ├── enums
│ │ │ │ └── load-types.const.ts
│ │ │ ├── ng-package.json
│ │ │ ├── vector
│ │ │ │ ├── public-api.ts
│ │ │ │ └── vector-url
│ │ │ │ │ └── vector-url.component.html
│ │ │ ├── common
│ │ │ │ ├── url
│ │ │ │ │ ├── public-api.ts
│ │ │ │ │ ├── progress
│ │ │ │ │ │ ├── progress.component.html
│ │ │ │ │ │ └── progress.component.ts
│ │ │ │ │ ├── add
│ │ │ │ │ │ └── add.component.html
│ │ │ │ │ └── url.component.html
│ │ │ │ ├── common.component.scss
│ │ │ │ ├── public-api.ts
│ │ │ │ └── target-position
│ │ │ │ │ └── target-position.component.html
│ │ │ ├── catalogue
│ │ │ │ └── public-api.ts
│ │ │ ├── public-api.ts
│ │ │ └── url
│ │ │ │ ├── wms
│ │ │ │ ├── wms.component.html
│ │ │ │ ├── wms.component.ts
│ │ │ │ └── wms.module.ts
│ │ │ │ ├── arcgis
│ │ │ │ ├── arcgis.component.html
│ │ │ │ ├── arcgis.component.ts
│ │ │ │ └── arcgis.module.ts
│ │ │ │ ├── wmts
│ │ │ │ └── wmts.component.ts
│ │ │ │ ├── wfs
│ │ │ │ └── wfs.component.ts
│ │ │ │ ├── public-api.ts
│ │ │ │ └── add-data-url-values.ts
│ │ ├── geolocation
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ └── geolocation.module.ts
│ │ ├── language
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ ├── translate-testing.module.ts
│ │ │ └── language.component.html
│ │ ├── map-swipe
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ └── map-swipe.module.ts
│ │ ├── measure
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── save-map
│ │ │ ├── index.ts
│ │ │ ├── notAvailable.png
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── sidebar
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── toolbar
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ ├── ng-package.json
│ │ │ ├── toolbar.component.html
│ │ │ └── toolbar.module.ts
│ │ ├── wfs-filter
│ │ │ ├── index.ts
│ │ │ ├── public-api.ts
│ │ │ └── ng-package.json
│ │ ├── compositions
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ └── public-api.ts
│ │ ├── feature-table
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ └── feature-table.component.html
│ │ ├── layer-manager
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── widgets
│ │ │ │ ├── layer-editor-widget-container.service.ts
│ │ │ │ ├── legend-widget.component.html
│ │ │ │ ├── wms-source-widget
│ │ │ │ │ └── wms-source-widget.component.html
│ │ │ │ ├── type-widget.component.ts
│ │ │ │ ├── layer-type-switcher-widget
│ │ │ │ │ └── layer-type-switcher-widget.component.html
│ │ │ │ ├── layer-folder-widget
│ │ │ │ │ └── layer-folder-widget.component.html
│ │ │ │ ├── opacity-widget.component.html
│ │ │ │ ├── type-widget.component.html
│ │ │ │ └── extent-widget
│ │ │ │ │ └── extent-widget.component.html
│ │ │ ├── logical-list
│ │ │ │ └── layer-manager-layerlist.component.html
│ │ │ └── dimensions
│ │ │ │ └── date-preformat.pipe.ts
│ │ └── trip-planner
│ │ │ ├── index.ts
│ │ │ ├── ng-package.json
│ │ │ ├── public-api.ts
│ │ │ ├── ors-profiles.const.ts
│ │ │ └── route-profile-selector.component.ts
│ ├── .versionrc
│ ├── assets
│ │ └── img
│ │ │ ├── osm.png
│ │ │ ├── blank.png
│ │ │ ├── orto.png
│ │ │ ├── default.png
│ │ │ ├── tester.png
│ │ │ ├── notAvailable.png
│ │ │ ├── pin_white_blue.png
│ │ │ ├── pin_white_red32.png
│ │ │ ├── hslayers-ng-logo.png
│ │ │ ├── pin_white_blue24.png
│ │ │ ├── pin_white_blue32.png
│ │ │ └── hslayers-ng-favicon_32x32.jpg
│ ├── test
│ │ ├── print-legend.service.mock.ts
│ │ ├── print-title.service.mock.ts
│ │ ├── print-imprint.service.mock.ts
│ │ ├── print.service.mock.ts
│ │ ├── print-scale.service.mock.ts
│ │ ├── layer-manager-layerlist.service.mock.ts
│ │ ├── styler.service.mock.ts
│ │ ├── data
│ │ │ └── service-endpoints.ts
│ │ ├── testing-utils.ts
│ │ └── test.ts
│ ├── .browserslistrc
│ ├── public-api.ts
│ ├── tsconfig.lib.prod.json
│ ├── tsconfig.json
│ ├── .compodocrc.json
│ ├── ng-package.json
│ ├── tsconfig.spec.json
│ ├── css
│ │ └── bootstrap-utilities.scss
│ └── tsconfig.lib.json
├── hslayers-server
│ ├── .npmignore
│ ├── .gitignore
│ ├── .eslintrc.json
│ └── src
│ │ └── oauth2
│ │ └── session.js
├── hslayers-cesium
│ ├── src
│ │ ├── hscesium.component.html
│ │ ├── param-cache-map-item.class.ts
│ │ ├── ol-cesium-object-map-item.class.ts
│ │ ├── hscesium.component.scss
│ │ ├── toggle-view
│ │ │ ├── toggle-view.component.scss
│ │ │ └── toggle-view.component.html
│ │ ├── public-api.ts
│ │ └── query-popup.service.ts
│ ├── ng-package.json
│ ├── tsconfig.lib.prod.json
│ ├── .compodocrc.json
│ ├── tsconfig.spec.json
│ └── test
│ │ └── test.ts
└── hslayers-sensors
│ ├── src
│ └── components
│ │ └── sensors
│ │ ├── types
│ │ ├── aggregate.type.ts
│ │ ├── senslog-endpoint.type.ts
│ │ ├── interval.type.ts
│ │ ├── senslog-sensor.type.ts
│ │ └── senslog-response.type.ts
│ │ └── sensor-unit.class.ts
│ ├── ng-package.json
│ ├── tsconfig.lib.prod.json
│ ├── tsconfig.spec.json
│ └── .compodocrc.json
├── .github
├── CODEOWNERS
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
└── workflows
│ ├── build+test_server.yml
│ └── build+test_libs_apps.yml
├── cypress
├── fixtures
│ └── data-mocks.json
├── plugins
│ └── index.ts
├── tsconfig.json
└── tests
│ ├── index.cy.ts
│ └── language.cy.ts
├── .editorconfig
├── tsconfig.spec.json
├── .githooks
└── pre-commit
├── .browserslistrc
├── .gitignore
├── Makefile
└── cypress.config.ts
/projects/test-app/README.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/cesium-test-app/README.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/decoupling-test-app/README.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/test-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/test-app/src/locale/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/hslayers-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/hslayers-app/src/locale/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/decoupling-test-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/decoupling-test-app/src/locale/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/hslayers-cesium-app/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/cesium-test-app/src/app/app.component.sass:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/test-app/custom-icons.txt:
--------------------------------------------------------------------------------
1 | truck-fast
2 |
--------------------------------------------------------------------------------
/projects/hslayers-cesium-app/src/app/app.component.sass:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/hslayers-app/src/hslayers-app/hslayers-app.component.sass:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/hslayers/config/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/hslayers/core/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/hslayers/types/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/decoupling-test-app/src/hslayers-app/hslayers-app.component.sass:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/projects/hslayers/common/pager/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/hslayers/common/pipes/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/hslayers/common/toast/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/hslayers/services/log/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/hslayers/services/map/index.ts:
--------------------------------------------------------------------------------
1 | export * from './public-api';
2 |
--------------------------------------------------------------------------------
/projects/cesium-test-app/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |