@opengeoweb/core 2.8.0 → 2.12.0
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/index.esm.js +5537 -6976
- package/index.umd.js +21136 -22477
- package/lib/components/ComponentsLookUp/componentsLookUp.d.ts +1 -1
- package/lib/components/ConfigurableMap/ConfigurableMapConnect.d.ts +3 -4
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/DimensionSelect/DimensionSelect.d.ts +2 -2
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/DimensionSelect/DimensionSelectConnect.d.ts +1 -0
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/DragHandle/DragHandle.d.ts +1 -1
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/EnableLayer/EnableLayerConnect.d.ts +1 -0
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/OpacitySelect/OpacitySelect.d.ts +0 -1
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/OpacitySelect/OpacitySelectConnect.d.ts +1 -0
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/RenderLayers/RenderLayersConnect.d.ts +1 -0
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/RenderStyles/RenderStyles.d.ts +0 -1
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/RenderStyles/RenderStylesConnect.d.ts +1 -0
- package/lib/components/LayerManager/LayerManager.d.ts +2 -0
- package/lib/components/LayerManager/LayerManager.stories.d.ts +9 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerAddRemoveButton.d.ts +3 -3
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerList.d.ts +2 -2
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListRow.d.ts +5 -4
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListUtils.d.ts +1 -2
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceChip.d.ts +2 -2
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceChipConnect.d.ts +3 -2
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceList.d.ts +1 -3
- package/lib/components/LayerManager/LayerSelect/ServiceOptionsDialog/ServiceOptionsDialog.d.ts +3 -2
- package/lib/components/Legend/LegendConnect.d.ts +2 -0
- package/lib/components/Legend/LegendMapButtonConnect.d.ts +1 -0
- package/lib/components/MapView/MapViewConnect.LayerChangeEnabledOpacity.stories.d.ts +2 -2
- package/lib/components/MultiMapView/HarmoniePresets/HarmonieTempAndPrecipPreset.d.ts +1 -0
- package/lib/components/MultiMapView/ModelRunInterval/ModelRunInterval.d.ts +2 -1
- package/lib/components/MultiMapView/MultiMapViewConnect.d.ts +2 -2
- package/lib/components/Providers/Providers.d.ts +1 -1
- package/lib/components/ReactMapView/ReactMapViewParseLayer.d.ts +0 -1
- package/lib/components/SyncGroups/selector.d.ts +0 -1
- package/lib/components/TimeSlider/TimeSlider.d.ts +2 -0
- package/lib/components/TimeSlider/TimeSliderButtons/PlayButton/PlayButtonConnect.d.ts +1 -1
- package/lib/components/TimeSlider/TimeSliderButtons/SpeedButton/SpeedButtonConnect.d.ts +1 -1
- package/lib/index.d.ts +59 -10
- package/lib/store/generic/actions.d.ts +3 -4
- package/lib/store/generic/index.d.ts +14 -0
- package/lib/store/generic/sagas.d.ts +10 -9
- package/lib/store/generic/selectors.d.ts +0 -1
- package/lib/store/generic/synchronizationActions/actions.d.ts +6 -5
- package/lib/store/generic/synchronizationActions/types.d.ts +10 -23
- package/lib/store/generic/synchronizationGroups/constants.d.ts +0 -8
- package/lib/store/generic/synchronizationGroups/index.d.ts +1 -2
- package/lib/store/generic/synchronizationGroups/reducer.d.ts +25 -3
- package/lib/store/generic/synchronizationGroups/sagas.d.ts +3 -3
- package/lib/store/generic/synchronizationGroups/selectors.d.ts +0 -2
- package/lib/store/generic/synchronizationGroups/types.d.ts +8 -38
- package/lib/store/generic/synchronizationGroups/utils.d.ts +0 -5
- package/lib/store/generic/types.d.ts +3 -12
- package/lib/store/index.d.ts +4 -0
- package/lib/store/layerSelect/index.d.ts +2 -0
- package/lib/store/layerSelect/reducer.d.ts +12 -2
- package/lib/store/layerSelect/sagas.d.ts +3 -3
- package/lib/store/layerSelect/selectors.d.ts +0 -6
- package/lib/store/layerSelect/types.d.ts +7 -35
- package/lib/store/mapStore/index.d.ts +3 -0
- package/lib/store/mapStore/layers/index.d.ts +2 -0
- package/lib/store/mapStore/layers/reducer.d.ts +42 -4
- package/lib/store/mapStore/layers/selectors.d.ts +0 -17
- package/lib/store/mapStore/layers/types.d.ts +24 -72
- package/lib/store/mapStore/map/actions.d.ts +6 -170
- package/lib/store/mapStore/map/index.d.ts +2 -0
- package/lib/store/mapStore/map/reducer.d.ts +79 -4
- package/lib/store/mapStore/map/sagas.d.ts +13 -8
- package/lib/store/mapStore/map/selectors.d.ts +102 -39
- package/lib/store/mapStore/map/types.d.ts +35 -121
- package/lib/store/mapStore/map/utils.d.ts +3 -3
- package/lib/store/mapStore/service/index.d.ts +2 -0
- package/lib/store/mapStore/service/reducer.d.ts +9 -4
- package/lib/store/mapStore/service/selectors.d.ts +0 -7
- package/lib/store/mapStore/service/types.d.ts +2 -12
- package/lib/store/mapStore/utils/helpers.d.ts +0 -1
- package/lib/store/ui/index.d.ts +2 -0
- package/lib/store/ui/reducer.d.ts +19 -2
- package/lib/store/ui/selectors.d.ts +3 -8
- package/lib/store/ui/types.d.ts +3 -28
- package/lib/storybookUtils/defaultStorySettings.d.ts +2 -1
- package/lib/{store.d.ts → storybookUtils/store.d.ts} +0 -0
- package/lib/types/types.d.ts +1 -2
- package/lib/utils/jsonPresetFilter.d.ts +5 -0
- package/package.json +7 -9
- package/lib/components/TimeSlider/TimeSliderButtons/ResetButton/ResetButton.d.ts +0 -9
- package/lib/components/TimeSlider/TimeSliderButtons/ResetButton/ResetButton.spec.d.ts +0 -1
- package/lib/components/TimeSlider/TimeSliderButtons/ResetButton/ResetButtonConnect.d.ts +0 -15
- package/lib/components/TimeSlider/TimeSliderButtons/ResetButton/ResetButtonConnect.spec.d.ts +0 -1
- package/lib/store/advancedLayerStore/actions.d.ts +0 -15
- package/lib/store/advancedLayerStore/config.d.ts +0 -4
- package/lib/store/advancedLayerStore/constants.d.ts +0 -2
- package/lib/store/advancedLayerStore/reducer.d.ts +0 -14
- package/lib/store/advancedLayerStore/reducer.spec.d.ts +0 -1
- package/lib/store/advancedLayerStore/selectors.d.ts +0 -21
- package/lib/store/advancedLayerStore/selectors.spec.d.ts +0 -1
- package/lib/store/advancedLayerStore/types.d.ts +0 -30
- package/lib/store/generic/constants.d.ts +0 -2
- package/lib/store/generic/synchronizationActions/constants.d.ts +0 -3
- package/lib/store/generic/synchronizationGroups/actions.d.ts +0 -80
- package/lib/store/layerSelect/actions.d.ts +0 -26
- package/lib/store/layerSelect/constants.d.ts +0 -7
- package/lib/store/mapStore/actions.d.ts +0 -3
- package/lib/store/mapStore/constants.d.ts +0 -3
- package/lib/store/mapStore/layers/actions.d.ts +0 -134
- package/lib/store/mapStore/layers/constants.d.ts +0 -17
- package/lib/store/mapStore/map/constants.d.ts +0 -26
- package/lib/store/mapStore/selectors.d.ts +0 -3
- package/lib/store/mapStore/service/actions.d.ts +0 -15
- package/lib/store/mapStore/service/constants.d.ts +0 -2
- package/lib/store/ui/actions.d.ts +0 -43
- package/lib/store/ui/constants.d.ts +0 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Scale, WebMap, WebMapState } from './types';
|
|
1
|
+
import { MapPreset, Scale, WebMap, WebMapState } from './types';
|
|
2
2
|
import { AppStore } from '../../../types/types';
|
|
3
3
|
import { Layer } from '../types';
|
|
4
4
|
/**
|
|
@@ -26,7 +26,6 @@ export declare const getAllMapIds: (store: AppStore) => string[];
|
|
|
26
26
|
* @returns {object} object containing map state (isAnimating, bbox, baseLayers, layers etc.)
|
|
27
27
|
*/
|
|
28
28
|
export declare const getFirstMap: ((state: {
|
|
29
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
30
29
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
31
30
|
ui?: import("../../ui/types").UIStoreType;
|
|
32
31
|
webmap?: WebMapState;
|
|
@@ -46,7 +45,6 @@ export declare const getFirstMap: ((state: {
|
|
|
46
45
|
* @returns {string} returnType:string - map id
|
|
47
46
|
*/
|
|
48
47
|
export declare const getFirstMapId: ((state: {
|
|
49
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
50
48
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
51
49
|
ui?: import("../../ui/types").UIStoreType;
|
|
52
50
|
webmap?: WebMapState;
|
|
@@ -64,7 +62,6 @@ export declare const getFirstMapId: ((state: {
|
|
|
64
62
|
* @returns {boolean} returnType:boolean - true if map is present
|
|
65
63
|
*/
|
|
66
64
|
export declare const getIsMapPresent: ((state: {
|
|
67
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
68
65
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
69
66
|
ui?: import("../../ui/types").UIStoreType;
|
|
70
67
|
webmap?: WebMapState;
|
|
@@ -85,7 +82,6 @@ export declare const getIsMapPresent: ((state: {
|
|
|
85
82
|
* @returns {array} returnType: array - array containing all layerIds
|
|
86
83
|
*/
|
|
87
84
|
export declare const getLayerIds: ((state: {
|
|
88
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
89
85
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
90
86
|
ui?: import("../../ui/types").UIStoreType;
|
|
91
87
|
webmap?: WebMapState;
|
|
@@ -106,7 +102,6 @@ export declare const getLayerIds: ((state: {
|
|
|
106
102
|
* @returns {array} returnType: array - array containing all layer states for the map
|
|
107
103
|
*/
|
|
108
104
|
export declare const getMapLayers: ((state: {
|
|
109
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
110
105
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
111
106
|
ui?: import("../../ui/types").UIStoreType;
|
|
112
107
|
webmap?: WebMapState;
|
|
@@ -127,7 +122,6 @@ export declare const getMapLayers: ((state: {
|
|
|
127
122
|
* @returns {array} returnType: array - array containing an array of baselayers ids
|
|
128
123
|
*/
|
|
129
124
|
export declare const getMapBaseLayersIds: ((state: {
|
|
130
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
131
125
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
132
126
|
ui?: import("../../ui/types").UIStoreType;
|
|
133
127
|
webmap?: WebMapState;
|
|
@@ -148,7 +142,6 @@ export declare const getMapBaseLayersIds: ((state: {
|
|
|
148
142
|
* @returns {array} returnType: array - array containing all baselayers for the map
|
|
149
143
|
*/
|
|
150
144
|
export declare const getMapBaseLayers: ((state: {
|
|
151
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
152
145
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
153
146
|
ui?: import("../../ui/types").UIStoreType;
|
|
154
147
|
webmap?: WebMapState;
|
|
@@ -169,7 +162,6 @@ export declare const getMapBaseLayers: ((state: {
|
|
|
169
162
|
* @returns {array} returnType: array - array containing an array of overLayers ids
|
|
170
163
|
*/
|
|
171
164
|
export declare const getMapOverLayersIds: ((state: {
|
|
172
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
173
165
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
174
166
|
ui?: import("../../ui/types").UIStoreType;
|
|
175
167
|
webmap?: WebMapState;
|
|
@@ -190,7 +182,6 @@ export declare const getMapOverLayersIds: ((state: {
|
|
|
190
182
|
* @returns {array} returnType: array - array containing all overLayers for the map
|
|
191
183
|
*/
|
|
192
184
|
export declare const getMapOverLayers: ((state: {
|
|
193
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
194
185
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
195
186
|
ui?: import("../../ui/types").UIStoreType;
|
|
196
187
|
webmap?: WebMapState;
|
|
@@ -211,7 +202,6 @@ export declare const getMapOverLayers: ((state: {
|
|
|
211
202
|
* @returns {array} returnType: array - array containing map dimensions
|
|
212
203
|
*/
|
|
213
204
|
export declare const getMapDimensions: ((state: {
|
|
214
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
215
205
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
216
206
|
ui?: import("../../ui/types").UIStoreType;
|
|
217
207
|
webmap?: WebMapState;
|
|
@@ -233,7 +223,6 @@ export declare const getMapDimensions: ((state: {
|
|
|
233
223
|
* @returns {object} returnType: object - object containing the map dimension details
|
|
234
224
|
*/
|
|
235
225
|
export declare const getMapDimension: ((state: {
|
|
236
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
237
226
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
238
227
|
ui?: import("../../ui/types").UIStoreType;
|
|
239
228
|
webmap?: WebMapState;
|
|
@@ -254,7 +243,6 @@ export declare const getMapDimension: ((state: {
|
|
|
254
243
|
* @returns {string} returnType: string - string containing srs
|
|
255
244
|
*/
|
|
256
245
|
export declare const getSrs: ((state: {
|
|
257
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
258
246
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
259
247
|
ui?: import("../../ui/types").UIStoreType;
|
|
260
248
|
webmap?: WebMapState;
|
|
@@ -275,7 +263,6 @@ export declare const getSrs: ((state: {
|
|
|
275
263
|
* @returns {object} returnType: object - boundingbox object {left: number, bottom: number, right:number, top: number}
|
|
276
264
|
*/
|
|
277
265
|
export declare const getBbox: ((state: {
|
|
278
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
279
266
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
280
267
|
ui?: import("../../ui/types").UIStoreType;
|
|
281
268
|
webmap?: WebMapState;
|
|
@@ -296,7 +283,6 @@ export declare const getBbox: ((state: {
|
|
|
296
283
|
* @returns {boolean} returnType: boolean
|
|
297
284
|
*/
|
|
298
285
|
export declare const isAnimating: ((state: {
|
|
299
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
300
286
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
301
287
|
ui?: import("../../ui/types").UIStoreType;
|
|
302
288
|
webmap?: WebMapState;
|
|
@@ -317,7 +303,6 @@ export declare const isAnimating: ((state: {
|
|
|
317
303
|
* @returns {object} returnType: object - object containing isAnimating boolean and id string
|
|
318
304
|
*/
|
|
319
305
|
export declare const linkedMapAnimationInfo: ((state: {
|
|
320
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
321
306
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
322
307
|
ui?: import("../../ui/types").UIStoreType;
|
|
323
308
|
webmap?: WebMapState;
|
|
@@ -347,7 +332,6 @@ export declare const linkedMapAnimationInfo: ((state: {
|
|
|
347
332
|
* @returns {string} returnType: string
|
|
348
333
|
*/
|
|
349
334
|
export declare const getAnimationStartTime: ((state: {
|
|
350
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
351
335
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
352
336
|
ui?: import("../../ui/types").UIStoreType;
|
|
353
337
|
webmap?: WebMapState;
|
|
@@ -368,7 +352,6 @@ export declare const getAnimationStartTime: ((state: {
|
|
|
368
352
|
* @returns {string} returnType: string
|
|
369
353
|
*/
|
|
370
354
|
export declare const getAnimationEndTime: ((state: {
|
|
371
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
372
355
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
373
356
|
ui?: import("../../ui/types").UIStoreType;
|
|
374
357
|
webmap?: WebMapState;
|
|
@@ -389,7 +372,6 @@ export declare const getAnimationEndTime: ((state: {
|
|
|
389
372
|
* @returns {boolean} returnType: boolean
|
|
390
373
|
*/
|
|
391
374
|
export declare const isAutoUpdating: ((state: {
|
|
392
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
393
375
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
394
376
|
ui?: import("../../ui/types").UIStoreType;
|
|
395
377
|
webmap?: WebMapState;
|
|
@@ -409,7 +391,6 @@ export declare const isAutoUpdating: ((state: {
|
|
|
409
391
|
* @param {string} mapId mapId: string - Id of the map
|
|
410
392
|
*/
|
|
411
393
|
export declare const getActiveLayerId: ((state: {
|
|
412
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
413
394
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
414
395
|
ui?: import("../../ui/types").UIStoreType;
|
|
415
396
|
webmap?: WebMapState;
|
|
@@ -430,7 +411,6 @@ export declare const getActiveLayerId: ((state: {
|
|
|
430
411
|
* @returns {Scale} returnType: Scale - scale as an enum
|
|
431
412
|
*/
|
|
432
413
|
export declare const getMapTimeSliderScale: ((state: {
|
|
433
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
434
414
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
435
415
|
ui?: import("../../ui/types").UIStoreType;
|
|
436
416
|
webmap?: WebMapState;
|
|
@@ -451,7 +431,6 @@ export declare const getMapTimeSliderScale: ((state: {
|
|
|
451
431
|
* @returns {number} returnType: number - time step as a number
|
|
452
432
|
*/
|
|
453
433
|
export declare const getMapTimeStep: ((state: {
|
|
454
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
455
434
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
456
435
|
ui?: import("../../ui/types").UIStoreType;
|
|
457
436
|
webmap?: WebMapState;
|
|
@@ -472,7 +451,6 @@ export declare const getMapTimeStep: ((state: {
|
|
|
472
451
|
* @returns {number} returnType: number - speed as a number
|
|
473
452
|
*/
|
|
474
453
|
export declare const getMapAnimationDelay: ((state: {
|
|
475
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
476
454
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
477
455
|
ui?: import("../../ui/types").UIStoreType;
|
|
478
456
|
webmap?: WebMapState;
|
|
@@ -493,7 +471,6 @@ export declare const getMapAnimationDelay: ((state: {
|
|
|
493
471
|
* @returns {number} returnType: number - center time as a unix timestamp
|
|
494
472
|
*/
|
|
495
473
|
export declare const getMapTimeSliderCenterTime: ((state: {
|
|
496
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
497
474
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
498
475
|
ui?: import("../../ui/types").UIStoreType;
|
|
499
476
|
webmap?: WebMapState;
|
|
@@ -514,7 +491,6 @@ export declare const getMapTimeSliderCenterTime: ((state: {
|
|
|
514
491
|
* @returns {number} returnType: number - the number of seconds per pixel
|
|
515
492
|
*/
|
|
516
493
|
export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
517
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
518
494
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
519
495
|
ui?: import("../../ui/types").UIStoreType;
|
|
520
496
|
webmap?: WebMapState;
|
|
@@ -535,7 +511,6 @@ export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
|
535
511
|
* @returns {number} returnType: number - the number of scaleto seconds pixel
|
|
536
512
|
*/
|
|
537
513
|
export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
|
|
538
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
539
514
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
540
515
|
ui?: import("../../ui/types").UIStoreType;
|
|
541
516
|
webmap?: WebMapState;
|
|
@@ -556,7 +531,6 @@ export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
|
|
|
556
531
|
* @returns {boolean} returnType: boolean
|
|
557
532
|
*/
|
|
558
533
|
export declare const isTimestepAuto: ((state: {
|
|
559
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
560
534
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
561
535
|
ui?: import("../../ui/types").UIStoreType;
|
|
562
536
|
webmap?: WebMapState;
|
|
@@ -577,7 +551,26 @@ export declare const isTimestepAuto: ((state: {
|
|
|
577
551
|
* @returns {boolean} returnType: boolean
|
|
578
552
|
*/
|
|
579
553
|
export declare const isTimeSliderHoverOn: ((state: {
|
|
580
|
-
|
|
554
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
555
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
556
|
+
webmap?: WebMapState;
|
|
557
|
+
services?: import("../types").ServiceState;
|
|
558
|
+
layers?: import("../types").LayerState;
|
|
559
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
560
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
561
|
+
clearCache: () => void;
|
|
562
|
+
}> & {
|
|
563
|
+
clearCache: () => void;
|
|
564
|
+
};
|
|
565
|
+
/**
|
|
566
|
+
* Returns map is time slider visible
|
|
567
|
+
*
|
|
568
|
+
* Example: isTimeSliderHoverOn = isTimeSliderVisible(store, 'mapid_1')
|
|
569
|
+
* @param {object} store store: object - store object
|
|
570
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
571
|
+
* @returns {boolean} returnType: boolean
|
|
572
|
+
*/
|
|
573
|
+
export declare const isTimeSliderVisible: ((state: {
|
|
581
574
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
582
575
|
ui?: import("../../ui/types").UIStoreType;
|
|
583
576
|
webmap?: WebMapState;
|
|
@@ -599,7 +592,6 @@ export declare const isTimeSliderHoverOn: ((state: {
|
|
|
599
592
|
* @returns {boolean} returnType: boolean
|
|
600
593
|
*/
|
|
601
594
|
export declare const getIsLayerActiveLayer: ((state: {
|
|
602
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
603
595
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
604
596
|
ui?: import("../../ui/types").UIStoreType;
|
|
605
597
|
webmap?: WebMapState;
|
|
@@ -620,7 +612,6 @@ export declare const getIsLayerActiveLayer: ((state: {
|
|
|
620
612
|
* @returns {string} returnType: string - the mapId, or null if not found
|
|
621
613
|
*/
|
|
622
614
|
export declare const getMapIdFromLayerId: ((state: {
|
|
623
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
624
615
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
625
616
|
ui?: import("../../ui/types").UIStoreType;
|
|
626
617
|
webmap?: WebMapState;
|
|
@@ -642,7 +633,6 @@ export declare const getMapIdFromLayerId: ((state: {
|
|
|
642
633
|
* @returns {string} returnType: string - the layerId, or null if not found
|
|
643
634
|
*/
|
|
644
635
|
export declare const getLayerIdByLayerName: ((state: {
|
|
645
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
646
636
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
647
637
|
ui?: import("../../ui/types").UIStoreType;
|
|
648
638
|
webmap?: WebMapState;
|
|
@@ -664,7 +654,6 @@ export declare const getLayerIdByLayerName: ((state: {
|
|
|
664
654
|
* @returns {number} returnType: index number or -1 if not found
|
|
665
655
|
*/
|
|
666
656
|
export declare const getLayerIndexByLayerId: ((state: {
|
|
667
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
668
657
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
669
658
|
ui?: import("../../ui/types").UIStoreType;
|
|
670
659
|
webmap?: WebMapState;
|
|
@@ -686,7 +675,6 @@ export declare const getLayerIndexByLayerId: ((state: {
|
|
|
686
675
|
* @returns {object} returnType: layer, or null if not found
|
|
687
676
|
*/
|
|
688
677
|
export declare const getLayerByLayerIndex: ((state: {
|
|
689
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
690
678
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
691
679
|
ui?: import("../../ui/types").UIStoreType;
|
|
692
680
|
webmap?: WebMapState;
|
|
@@ -706,7 +694,6 @@ export declare const getLayerByLayerIndex: ((state: {
|
|
|
706
694
|
* @returns {array} returnType: array of dimension names
|
|
707
695
|
*/
|
|
708
696
|
export declare const getAllUniqueDimensions: ((state: {
|
|
709
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
710
697
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
711
698
|
ui?: import("../../ui/types").UIStoreType;
|
|
712
699
|
webmap?: WebMapState;
|
|
@@ -727,7 +714,6 @@ export declare const getAllUniqueDimensions: ((state: {
|
|
|
727
714
|
* @returns {object} returnType: latitude and longitude of pin
|
|
728
715
|
*/
|
|
729
716
|
export declare const getPinLocation: ((state: {
|
|
730
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
731
717
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
732
718
|
ui?: import("../../ui/types").UIStoreType;
|
|
733
719
|
webmap?: WebMapState;
|
|
@@ -748,7 +734,6 @@ export declare const getPinLocation: ((state: {
|
|
|
748
734
|
* @returns {boolean} returnType: boolean or undefined
|
|
749
735
|
*/
|
|
750
736
|
export declare const getDisableMapPin: ((state: {
|
|
751
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
752
737
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
753
738
|
ui?: import("../../ui/types").UIStoreType;
|
|
754
739
|
webmap?: WebMapState;
|
|
@@ -769,7 +754,6 @@ export declare const getDisableMapPin: ((state: {
|
|
|
769
754
|
* @returns {number} selectedFeatureIndex: the index of the selected geojson feature
|
|
770
755
|
*/
|
|
771
756
|
export declare const getSelectedFeatureIndex: ((state: {
|
|
772
|
-
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
773
757
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
774
758
|
ui?: import("../../ui/types").UIStoreType;
|
|
775
759
|
webmap?: WebMapState;
|
|
@@ -784,13 +768,92 @@ export declare const getSelectedFeatureIndex: ((state: {
|
|
|
784
768
|
/**
|
|
785
769
|
* Returns the active map preset id
|
|
786
770
|
*
|
|
787
|
-
* Example
|
|
771
|
+
* Example getActiveMapPresetId(store, mapId);
|
|
788
772
|
* @param {object} store store: object - store object
|
|
789
773
|
* @param {string} mapId mapId: string - Id of the map
|
|
790
774
|
* @returns {boolean} returnType: boolean or undefined
|
|
791
775
|
*/
|
|
792
776
|
export declare const getActiveMapPresetId: ((state: {
|
|
793
|
-
|
|
777
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
778
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
779
|
+
webmap?: WebMapState;
|
|
780
|
+
services?: import("../types").ServiceState;
|
|
781
|
+
layers?: import("../types").LayerState;
|
|
782
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
783
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
784
|
+
clearCache: () => void;
|
|
785
|
+
}> & {
|
|
786
|
+
clearCache: () => void;
|
|
787
|
+
};
|
|
788
|
+
/**
|
|
789
|
+
* Creates a MapPreset from mapId
|
|
790
|
+
*
|
|
791
|
+
* Example getMapPreset(store, mapId);
|
|
792
|
+
* @param {object} store store: object - store object
|
|
793
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
794
|
+
* @returns {MapPreset} returnType: MapPreset
|
|
795
|
+
*/
|
|
796
|
+
export declare const getMapPreset: ((state: {
|
|
797
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
798
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
799
|
+
webmap?: WebMapState;
|
|
800
|
+
services?: import("../types").ServiceState;
|
|
801
|
+
layers?: import("../types").LayerState;
|
|
802
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
803
|
+
}, params_0: string) => MapPreset) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: import("../types").ReduxLayer[], args_2: import("../types").ReduxLayer[], args_3: {}, args_4: string, args_5: string, args_6: boolean, args_7: boolean, args_8: boolean) => MapPreset) & {
|
|
804
|
+
clearCache: () => void;
|
|
805
|
+
}> & {
|
|
806
|
+
clearCache: () => void;
|
|
807
|
+
};
|
|
808
|
+
/**
|
|
809
|
+
* Returns the loading state of the map preset
|
|
810
|
+
*
|
|
811
|
+
* Example getIsMapPresetLoading(store, mapId);
|
|
812
|
+
* @param {object} store store: object - store object
|
|
813
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
814
|
+
* @returns {boolean} returnType: boolean
|
|
815
|
+
*/
|
|
816
|
+
export declare const getIsMapPresetLoading: ((state: {
|
|
817
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
818
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
819
|
+
webmap?: WebMapState;
|
|
820
|
+
services?: import("../types").ServiceState;
|
|
821
|
+
layers?: import("../types").LayerState;
|
|
822
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
823
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
824
|
+
clearCache: () => void;
|
|
825
|
+
}> & {
|
|
826
|
+
clearCache: () => void;
|
|
827
|
+
};
|
|
828
|
+
/**
|
|
829
|
+
* Returns the has changes state of the map preset
|
|
830
|
+
*
|
|
831
|
+
* Example getHasMapPresetChanges(store, mapId);
|
|
832
|
+
* @param {object} store store: object - store object
|
|
833
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
834
|
+
* @returns {boolean} returnType: boolean
|
|
835
|
+
*/
|
|
836
|
+
export declare const getHasMapPresetChanges: ((state: {
|
|
837
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
838
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
839
|
+
webmap?: WebMapState;
|
|
840
|
+
services?: import("../types").ServiceState;
|
|
841
|
+
layers?: import("../types").LayerState;
|
|
842
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
843
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
844
|
+
clearCache: () => void;
|
|
845
|
+
}> & {
|
|
846
|
+
clearCache: () => void;
|
|
847
|
+
};
|
|
848
|
+
/**
|
|
849
|
+
* Returns the error state of the map preset
|
|
850
|
+
*
|
|
851
|
+
* Example getMapPresetError(store, mapId);
|
|
852
|
+
* @param {object} store store: object - store object
|
|
853
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
854
|
+
* @returns {Error} returnType: string
|
|
855
|
+
*/
|
|
856
|
+
export declare const getMapPresetError: ((state: {
|
|
794
857
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
795
858
|
ui?: import("../../ui/types").UIStoreType;
|
|
796
859
|
webmap?: WebMapState;
|