@opengeoweb/core 4.3.0 → 4.4.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.
Files changed (77) hide show
  1. package/index.esm.js +1055 -459
  2. package/index.umd.js +1108 -443
  3. package/lib/components/CanvasComponent/CanvasComponent.d.ts +6 -6
  4. package/lib/components/ConfigurableMap/ConfigurableMapConnect.d.ts +1 -0
  5. package/lib/components/LayerManager/LayerContainerRow/LayerRow/RenderLayers/RenderLayers.d.ts +1 -1
  6. package/lib/components/LayerManager/LayerContainerRow/LayerRow/RenderStyles/RenderStyles.d.ts +1 -1
  7. package/lib/components/LayerManager/LayerSelect/ServiceOptionsDialog/ServiceOptionsDialog.d.ts +2 -0
  8. package/lib/components/LayerManager/LayerSelect/ServiceOptionsDialog/ServiceOptionsDialogConnect.d.ts +2 -0
  9. package/lib/components/LayerManager/LayerSelect/ServicePopup/utils.d.ts +2 -0
  10. package/lib/components/LayerManager/useFetchServices.d.ts +1 -1
  11. package/lib/components/MultiMapView/ModelRunInterval/ModelRunInterval.d.ts +6 -0
  12. package/lib/components/MultiMapView/MultiMapViewConnect.d.ts +1 -0
  13. package/lib/components/ReactMapView/AdagucMapDraw.d.ts +1 -1
  14. package/lib/components/ReactMapView/AdagucMapDrawTools.d.ts +1 -1
  15. package/lib/components/ReactMapView/ReactMapView.d.ts +5 -5
  16. package/lib/components/ReactMapView/ReactMapViewParseLayer.d.ts +2 -2
  17. package/lib/components/SyncGroups/SimpleTimeSliderConnect.d.ts +9 -1
  18. package/lib/components/SyncGroups/selector.d.ts +6 -6
  19. package/lib/components/TimeSlider/TimeSlider.stories.d.ts +15 -0
  20. package/lib/components/TimeSlider/TimeSliderButtons/AutoUpdateButton/AutoUpdateButtonConnect.d.ts +13 -1
  21. package/lib/components/TimeSlider/TimeSliderButtons/BackwardForwardStepButton/BackwardForwardStepButton.d.ts +10 -0
  22. package/lib/components/TimeSlider/TimeSliderButtons/BackwardForwardStepButton/BackwardForwardStepButton.spec.d.ts +1 -0
  23. package/lib/components/TimeSlider/TimeSliderButtons/BackwardForwardStepButton/BackwardForwardStepButtonConnect.d.ts +6 -0
  24. package/lib/components/TimeSlider/TimeSliderButtons/BackwardForwardStepButton/BackwardForwardStepButtonConnect.spec.d.ts +1 -0
  25. package/lib/components/TimeSlider/TimeSliderButtons/HideSliderButton/HideSliderButton.d.ts +7 -0
  26. package/lib/components/TimeSlider/TimeSliderButtons/HideSliderButton/HideSliderButton.spec.d.ts +1 -0
  27. package/lib/components/TimeSlider/TimeSliderButtons/OptionsMenuButton/OptionsMenuButton.d.ts +2 -1
  28. package/lib/components/TimeSlider/TimeSliderButtons/OptionsMenuButton/OptionsMenuButton.stories.d.ts +24 -0
  29. package/lib/components/TimeSlider/TimeSliderButtons/PlayButton/PlayButtonConnect.d.ts +19 -18
  30. package/lib/components/TimeSlider/TimeSliderButtons/TimeSliderButtons.d.ts +2 -0
  31. package/lib/components/TimeSlider/TimeSliderClock/TimeSliderClock.d.ts +5 -0
  32. package/lib/components/TimeSlider/TimeSliderClock/TimeSliderClock.stories.d.ts +24 -0
  33. package/lib/components/TimeSlider/TimeSliderClock/TimeSliderClockConnect.d.ts +4 -0
  34. package/lib/components/TimeSlider/TimeSliderClock/TimeSliderClockConnect.spec.d.ts +1 -0
  35. package/lib/components/TimeSlider/TimeSliderConnect.d.ts +12 -1
  36. package/lib/components/TimeSlider/TimeSliderLegend/TimeSliderLegend.d.ts +1 -1
  37. package/lib/components/TimeSlider/TimeSliderLegend/TimeSliderLegendConnect.d.ts +22 -3
  38. package/lib/components/TimeSlider/TimeSliderLegend/TimeSliderLegendRenderFunctions.d.ts +1 -1
  39. package/lib/components/TimeSlider/TimeSliderRail/TimeSliderRailConnect.d.ts +22 -3
  40. package/lib/components/TimeSlider/TimeSliderRail/TimeSliderRailRenderFunctions.d.ts +1 -1
  41. package/lib/components/TimeSlider/TimeSliderUtils.d.ts +4 -1
  42. package/lib/components/WMSLoader/WMSLayerTree/WMSLayerTreeConnect.d.ts +11 -1
  43. package/lib/index.d.ts +52 -52
  44. package/lib/store/coreModuleConfig.d.ts +1 -1
  45. package/lib/store/generic/actions.d.ts +2 -2
  46. package/lib/store/generic/config.d.ts +3 -2
  47. package/lib/store/generic/index.d.ts +10 -10
  48. package/lib/store/generic/selectors.d.ts +7 -7
  49. package/lib/store/generic/synchronizationGroups/reducer.d.ts +2 -2
  50. package/lib/store/generic/synchronizationGroups/selectors.d.ts +13 -13
  51. package/lib/store/layerSelect/config.d.ts +3 -2
  52. package/lib/store/layerSelect/reducer.d.ts +1 -1
  53. package/lib/store/layerSelect/sagas.d.ts +3 -1
  54. package/lib/store/layerSelect/selectors.d.ts +54 -54
  55. package/lib/store/mapStore/config.d.ts +3 -2
  56. package/lib/store/mapStore/layers/reducer.d.ts +1 -1
  57. package/lib/store/mapStore/layers/selectors.d.ts +129 -109
  58. package/lib/store/mapStore/layers/types.d.ts +2 -1
  59. package/lib/store/mapStore/map/actions.d.ts +2 -2
  60. package/lib/store/mapStore/map/reducer.d.ts +33 -33
  61. package/lib/store/mapStore/map/sagas.d.ts +2 -1
  62. package/lib/store/mapStore/map/selectors.d.ts +297 -297
  63. package/lib/store/mapStore/service/reducer.d.ts +1 -1
  64. package/lib/store/mapStore/service/selectors.d.ts +36 -36
  65. package/lib/store/mapStore/service/types.d.ts +1 -0
  66. package/lib/store/snackbar/config.d.ts +3 -2
  67. package/lib/store/snackbar/reducer.d.ts +1 -1
  68. package/lib/store/snackbar/selectors.d.ts +2 -2
  69. package/lib/store/ui/config.d.ts +3 -2
  70. package/lib/store/ui/reducer.d.ts +1 -1
  71. package/lib/store/ui/selectors.d.ts +30 -30
  72. package/lib/storybookUtils/store.d.ts +1 -1
  73. package/lib/utils/__mocks__/getCapabilities.d.ts +24 -22
  74. package/lib/utils/defaultConfigurations.d.ts +2 -2
  75. package/lib/utils/defaultTestSettings.d.ts +1 -1
  76. package/lib/utils/testUtils.d.ts +1 -1
  77. package/package.json +11 -9
@@ -27,12 +27,12 @@ export declare const getAllMapIds: (store: AppStore) => string[];
27
27
  * @returns {object} object containing map state (isAnimating, bbox, baseLayers, layers etc.)
28
28
  */
29
29
  export declare const getFirstMap: ((state: {
30
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
31
- ui?: UIStoreType;
32
- webmap?: WebMapState;
33
- services?: import("../types").ServiceState;
34
- layers?: import("../types").LayerState;
35
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
30
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
31
+ ui?: UIStoreType | undefined;
32
+ webmap?: WebMapState | undefined;
33
+ services?: import("../types").ServiceState | undefined;
34
+ layers?: import("../types").LayerState | undefined;
35
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
36
36
  }) => any) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: any) => any) & {
37
37
  clearCache: () => void;
38
38
  }> & {
@@ -46,12 +46,12 @@ export declare const getFirstMap: ((state: {
46
46
  * @returns {string} returnType:string - map id
47
47
  */
48
48
  export declare const getFirstMapId: ((state: {
49
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
50
- ui?: UIStoreType;
51
- webmap?: WebMapState;
52
- services?: import("../types").ServiceState;
53
- layers?: import("../types").LayerState;
54
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
49
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
50
+ ui?: UIStoreType | undefined;
51
+ webmap?: WebMapState | undefined;
52
+ services?: import("../types").ServiceState | undefined;
53
+ layers?: import("../types").LayerState | undefined;
54
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
55
55
  }) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any> & {
56
56
  clearCache: () => void;
57
57
  };
@@ -63,12 +63,12 @@ export declare const getFirstMapId: ((state: {
63
63
  * @returns {boolean} returnType:boolean - true if map is present
64
64
  */
65
65
  export declare const getIsMapPresent: ((state: {
66
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
67
- ui?: UIStoreType;
68
- webmap?: WebMapState;
69
- services?: import("../types").ServiceState;
70
- layers?: import("../types").LayerState;
71
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
66
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
67
+ ui?: UIStoreType | undefined;
68
+ webmap?: WebMapState | undefined;
69
+ services?: import("../types").ServiceState | undefined;
70
+ layers?: import("../types").LayerState | undefined;
71
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
72
72
  }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: boolean) => boolean & {
73
73
  clearCache: () => void;
74
74
  }> & {
@@ -83,12 +83,12 @@ export declare const getIsMapPresent: ((state: {
83
83
  * @returns {array} returnType: array - array containing all layerIds
84
84
  */
85
85
  export declare const getLayerIds: ((state: {
86
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
87
- ui?: UIStoreType;
88
- webmap?: WebMapState;
89
- services?: import("../types").ServiceState;
90
- layers?: import("../types").LayerState;
91
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
86
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
87
+ ui?: UIStoreType | undefined;
88
+ webmap?: WebMapState | undefined;
89
+ services?: import("../types").ServiceState | undefined;
90
+ layers?: import("../types").LayerState | undefined;
91
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
92
92
  }, params_0: string) => string[]) & import("reselect").OutputSelectorFields<((args_0: WebMap) => string[]) & {
93
93
  clearCache: () => void;
94
94
  }> & {
@@ -103,13 +103,13 @@ export declare const getLayerIds: ((state: {
103
103
  * @returns {array} returnType: array - array containing all layer states for the map
104
104
  */
105
105
  export declare const getMapLayers: ((state: {
106
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
107
- ui?: UIStoreType;
108
- webmap?: WebMapState;
109
- services?: import("../types").ServiceState;
110
- layers?: import("../types").LayerState;
111
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
112
- }, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer>) => import("../types").ReduxLayer[]) & {
106
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
107
+ ui?: UIStoreType | undefined;
108
+ webmap?: WebMapState | undefined;
109
+ services?: import("../types").ServiceState | undefined;
110
+ layers?: import("../types").LayerState | undefined;
111
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
112
+ }, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[]) & {
113
113
  clearCache: () => void;
114
114
  }> & {
115
115
  clearCache: () => void;
@@ -123,12 +123,12 @@ export declare const getMapLayers: ((state: {
123
123
  * @returns {array} returnType: array - array containing an array of baselayers ids
124
124
  */
125
125
  export declare const getMapBaseLayersIds: ((state: {
126
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
127
- ui?: UIStoreType;
128
- webmap?: WebMapState;
129
- services?: import("../types").ServiceState;
130
- layers?: import("../types").LayerState;
131
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
126
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
127
+ ui?: UIStoreType | undefined;
128
+ webmap?: WebMapState | undefined;
129
+ services?: import("../types").ServiceState | undefined;
130
+ layers?: import("../types").LayerState | undefined;
131
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
132
132
  }, params_0: string) => string[]) & import("reselect").OutputSelectorFields<((args_0: WebMap) => string[]) & {
133
133
  clearCache: () => void;
134
134
  }> & {
@@ -143,13 +143,13 @@ export declare const getMapBaseLayersIds: ((state: {
143
143
  * @returns {array} returnType: array - array containing all baselayers for the map
144
144
  */
145
145
  export declare const getMapBaseLayers: ((state: {
146
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
147
- ui?: UIStoreType;
148
- webmap?: WebMapState;
149
- services?: import("../types").ServiceState;
150
- layers?: import("../types").LayerState;
151
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
152
- }, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer>) => import("../types").ReduxLayer[]) & {
146
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
147
+ ui?: UIStoreType | undefined;
148
+ webmap?: WebMapState | undefined;
149
+ services?: import("../types").ServiceState | undefined;
150
+ layers?: import("../types").LayerState | undefined;
151
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
152
+ }, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[]) & {
153
153
  clearCache: () => void;
154
154
  }> & {
155
155
  clearCache: () => void;
@@ -163,12 +163,12 @@ export declare const getMapBaseLayers: ((state: {
163
163
  * @returns {array} returnType: array - array containing an array of overLayers ids
164
164
  */
165
165
  export declare const getMapOverLayersIds: ((state: {
166
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
167
- ui?: UIStoreType;
168
- webmap?: WebMapState;
169
- services?: import("../types").ServiceState;
170
- layers?: import("../types").LayerState;
171
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
166
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
167
+ ui?: UIStoreType | undefined;
168
+ webmap?: WebMapState | undefined;
169
+ services?: import("../types").ServiceState | undefined;
170
+ layers?: import("../types").LayerState | undefined;
171
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
172
172
  }, params_0: string) => string[]) & import("reselect").OutputSelectorFields<((args_0: WebMap) => string[]) & {
173
173
  clearCache: () => void;
174
174
  }> & {
@@ -183,13 +183,13 @@ export declare const getMapOverLayersIds: ((state: {
183
183
  * @returns {array} returnType: array - array containing all overLayers for the map
184
184
  */
185
185
  export declare const getMapOverLayers: ((state: {
186
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
187
- ui?: UIStoreType;
188
- webmap?: WebMapState;
189
- services?: import("../types").ServiceState;
190
- layers?: import("../types").LayerState;
191
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
192
- }, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer>) => import("../types").ReduxLayer[]) & {
186
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
187
+ ui?: UIStoreType | undefined;
188
+ webmap?: WebMapState | undefined;
189
+ services?: import("../types").ServiceState | undefined;
190
+ layers?: import("../types").LayerState | undefined;
191
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
192
+ }, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[]) & {
193
193
  clearCache: () => void;
194
194
  }> & {
195
195
  clearCache: () => void;
@@ -203,13 +203,13 @@ export declare const getMapOverLayers: ((state: {
203
203
  * @returns {array} returnType: array - array containing map dimensions
204
204
  */
205
205
  export declare const getMapDimensions: ((state: {
206
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
207
- ui?: UIStoreType;
208
- webmap?: WebMapState;
209
- services?: import("../types").ServiceState;
210
- layers?: import("../types").LayerState;
211
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
212
- }, params_0: string) => import("./types").Dimension[]) & import("reselect").OutputSelectorFields<((args_0: WebMap) => import("./types").Dimension[]) & {
206
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
207
+ ui?: UIStoreType | undefined;
208
+ webmap?: WebMapState | undefined;
209
+ services?: import("../types").ServiceState | undefined;
210
+ layers?: import("../types").LayerState | undefined;
211
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
212
+ }, params_0: string) => import("./types").Dimension[] | undefined) & import("reselect").OutputSelectorFields<((args_0: WebMap) => import("./types").Dimension[] | undefined) & {
213
213
  clearCache: () => void;
214
214
  }> & {
215
215
  clearCache: () => void;
@@ -224,13 +224,13 @@ export declare const getMapDimensions: ((state: {
224
224
  * @returns {object} returnType: object - object containing the map dimension details
225
225
  */
226
226
  export declare const getMapDimension: ((state: {
227
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
228
- ui?: UIStoreType;
229
- webmap?: WebMapState;
230
- services?: import("../types").ServiceState;
231
- layers?: import("../types").LayerState;
232
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
233
- }, params_0: string, params_1: {}) => any) & import("reselect").OutputSelectorFields<((args_0: WebMap, args_1: string) => any) & {
227
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
228
+ ui?: UIStoreType | undefined;
229
+ webmap?: WebMapState | undefined;
230
+ services?: import("../types").ServiceState | undefined;
231
+ layers?: import("../types").LayerState | undefined;
232
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
233
+ }, params_0: string, params_1: string) => import("./types").Dimension | undefined) & import("reselect").OutputSelectorFields<((args_0: WebMap, args_1: string) => import("./types").Dimension | undefined) & {
234
234
  clearCache: () => void;
235
235
  }> & {
236
236
  clearCache: () => void;
@@ -244,12 +244,12 @@ export declare const getMapDimension: ((state: {
244
244
  * @returns {string} returnType: string - string containing srs
245
245
  */
246
246
  export declare const getSrs: ((state: {
247
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
248
- ui?: UIStoreType;
249
- webmap?: WebMapState;
250
- services?: import("../types").ServiceState;
251
- layers?: import("../types").LayerState;
252
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
247
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
248
+ ui?: UIStoreType | undefined;
249
+ webmap?: WebMapState | undefined;
250
+ services?: import("../types").ServiceState | undefined;
251
+ layers?: import("../types").LayerState | undefined;
252
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
253
253
  }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
254
254
  clearCache: () => void;
255
255
  }> & {
@@ -264,12 +264,12 @@ export declare const getSrs: ((state: {
264
264
  * @returns {object} returnType: object - boundingbox object {left: number, bottom: number, right:number, top: number}
265
265
  */
266
266
  export declare const getBbox: ((state: {
267
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
268
- ui?: UIStoreType;
269
- webmap?: WebMapState;
270
- services?: import("../types").ServiceState;
271
- layers?: import("../types").LayerState;
272
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
267
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
268
+ ui?: UIStoreType | undefined;
269
+ webmap?: WebMapState | undefined;
270
+ services?: import("../types").ServiceState | undefined;
271
+ layers?: import("../types").LayerState | undefined;
272
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
273
273
  }, params_0: string) => Bbox) & import("reselect").OutputSelectorFields<((args_0: WebMap) => Bbox) & {
274
274
  clearCache: () => void;
275
275
  }> & {
@@ -284,12 +284,12 @@ export declare const getBbox: ((state: {
284
284
  * @returns {boolean} returnType: boolean
285
285
  */
286
286
  export declare const isAnimating: ((state: {
287
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
288
- ui?: UIStoreType;
289
- webmap?: WebMapState;
290
- services?: import("../types").ServiceState;
291
- layers?: import("../types").LayerState;
292
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
287
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
288
+ ui?: UIStoreType | undefined;
289
+ webmap?: WebMapState | undefined;
290
+ services?: import("../types").ServiceState | undefined;
291
+ layers?: import("../types").LayerState | undefined;
292
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
293
293
  }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
294
294
  clearCache: () => void;
295
295
  }> & {
@@ -304,12 +304,12 @@ export declare const isAnimating: ((state: {
304
304
  * @returns {object} returnType: object - object containing isAnimating boolean and id string
305
305
  */
306
306
  export declare const linkedMapAnimationInfo: ((state: {
307
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
308
- ui?: UIStoreType;
309
- webmap?: WebMapState;
310
- services?: import("../types").ServiceState;
311
- layers?: import("../types").LayerState;
312
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
307
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
308
+ ui?: UIStoreType | undefined;
309
+ webmap?: WebMapState | undefined;
310
+ services?: import("../types").ServiceState | undefined;
311
+ layers?: import("../types").LayerState | undefined;
312
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
313
313
  }, params_0: string) => {
314
314
  isAnimating: boolean;
315
315
  id: string;
@@ -333,13 +333,13 @@ export declare const linkedMapAnimationInfo: ((state: {
333
333
  * @returns {string} returnType: string
334
334
  */
335
335
  export declare const getAnimationStartTime: ((state: {
336
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
337
- ui?: UIStoreType;
338
- webmap?: WebMapState;
339
- services?: import("../types").ServiceState;
340
- layers?: import("../types").LayerState;
341
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
342
- }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
336
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
337
+ ui?: UIStoreType | undefined;
338
+ webmap?: WebMapState | undefined;
339
+ services?: import("../types").ServiceState | undefined;
340
+ layers?: import("../types").LayerState | undefined;
341
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
342
+ }, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
343
343
  clearCache: () => void;
344
344
  }> & {
345
345
  clearCache: () => void;
@@ -353,13 +353,13 @@ export declare const getAnimationStartTime: ((state: {
353
353
  * @returns {string} returnType: string
354
354
  */
355
355
  export declare const getAnimationEndTime: ((state: {
356
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
357
- ui?: UIStoreType;
358
- webmap?: WebMapState;
359
- services?: import("../types").ServiceState;
360
- layers?: import("../types").LayerState;
361
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
362
- }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
356
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
357
+ ui?: UIStoreType | undefined;
358
+ webmap?: WebMapState | undefined;
359
+ services?: import("../types").ServiceState | undefined;
360
+ layers?: import("../types").LayerState | undefined;
361
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
362
+ }, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
363
363
  clearCache: () => void;
364
364
  }> & {
365
365
  clearCache: () => void;
@@ -373,12 +373,12 @@ export declare const getAnimationEndTime: ((state: {
373
373
  * @returns {boolean} returnType: boolean
374
374
  */
375
375
  export declare const isAutoUpdating: ((state: {
376
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
377
- ui?: UIStoreType;
378
- webmap?: WebMapState;
379
- services?: import("../types").ServiceState;
380
- layers?: import("../types").LayerState;
381
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
376
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
377
+ ui?: UIStoreType | undefined;
378
+ webmap?: WebMapState | undefined;
379
+ services?: import("../types").ServiceState | undefined;
380
+ layers?: import("../types").LayerState | undefined;
381
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
382
382
  }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
383
383
  clearCache: () => void;
384
384
  }> & {
@@ -392,13 +392,13 @@ export declare const isAutoUpdating: ((state: {
392
392
  * @param {string} mapId mapId: string - Id of the map
393
393
  */
394
394
  export declare const getActiveLayerId: ((state: {
395
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
396
- ui?: UIStoreType;
397
- webmap?: WebMapState;
398
- services?: import("../types").ServiceState;
399
- layers?: import("../types").LayerState;
400
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
401
- }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
395
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
396
+ ui?: UIStoreType | undefined;
397
+ webmap?: WebMapState | undefined;
398
+ services?: import("../types").ServiceState | undefined;
399
+ layers?: import("../types").LayerState | undefined;
400
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
401
+ }, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
402
402
  clearCache: () => void;
403
403
  }> & {
404
404
  clearCache: () => void;
@@ -412,13 +412,13 @@ export declare const getActiveLayerId: ((state: {
412
412
  * @returns {Scale} returnType: Scale - scale as an enum
413
413
  */
414
414
  export declare const getMapTimeSliderScale: ((state: {
415
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
416
- ui?: UIStoreType;
417
- webmap?: WebMapState;
418
- services?: import("../types").ServiceState;
419
- layers?: import("../types").LayerState;
420
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
421
- }, params_0: string) => Scale) & import("reselect").OutputSelectorFields<(args_0: WebMap) => Scale & {
415
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
416
+ ui?: UIStoreType | undefined;
417
+ webmap?: WebMapState | undefined;
418
+ services?: import("../types").ServiceState | undefined;
419
+ layers?: import("../types").LayerState | undefined;
420
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
421
+ }, params_0: string) => Scale | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (Scale | undefined) & {
422
422
  clearCache: () => void;
423
423
  }> & {
424
424
  clearCache: () => void;
@@ -432,13 +432,13 @@ export declare const getMapTimeSliderScale: ((state: {
432
432
  * @returns {number} returnType: number - time step as a number
433
433
  */
434
434
  export declare const getMapTimeStep: ((state: {
435
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
436
- ui?: UIStoreType;
437
- webmap?: WebMapState;
438
- services?: import("../types").ServiceState;
439
- layers?: import("../types").LayerState;
440
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
441
- }, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
435
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
436
+ ui?: UIStoreType | undefined;
437
+ webmap?: WebMapState | undefined;
438
+ services?: import("../types").ServiceState | undefined;
439
+ layers?: import("../types").LayerState | undefined;
440
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
441
+ }, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
442
442
  clearCache: () => void;
443
443
  }> & {
444
444
  clearCache: () => void;
@@ -452,13 +452,13 @@ export declare const getMapTimeStep: ((state: {
452
452
  * @returns {number} returnType: number - speed as a number
453
453
  */
454
454
  export declare const getMapAnimationDelay: ((state: {
455
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
456
- ui?: UIStoreType;
457
- webmap?: WebMapState;
458
- services?: import("../types").ServiceState;
459
- layers?: import("../types").LayerState;
460
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
461
- }, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
455
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
456
+ ui?: UIStoreType | undefined;
457
+ webmap?: WebMapState | undefined;
458
+ services?: import("../types").ServiceState | undefined;
459
+ layers?: import("../types").LayerState | undefined;
460
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
461
+ }, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
462
462
  clearCache: () => void;
463
463
  }> & {
464
464
  clearCache: () => void;
@@ -472,13 +472,13 @@ export declare const getMapAnimationDelay: ((state: {
472
472
  * @returns {number} returnType: number - center time as a unix timestamp
473
473
  */
474
474
  export declare const getMapTimeSliderCenterTime: ((state: {
475
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
476
- ui?: UIStoreType;
477
- webmap?: WebMapState;
478
- services?: import("../types").ServiceState;
479
- layers?: import("../types").LayerState;
480
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
481
- }, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
475
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
476
+ ui?: UIStoreType | undefined;
477
+ webmap?: WebMapState | undefined;
478
+ services?: import("../types").ServiceState | undefined;
479
+ layers?: import("../types").LayerState | undefined;
480
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
481
+ }, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
482
482
  clearCache: () => void;
483
483
  }> & {
484
484
  clearCache: () => void;
@@ -492,13 +492,13 @@ export declare const getMapTimeSliderCenterTime: ((state: {
492
492
  * @returns {number} returnType: number - the number of seconds per pixel
493
493
  */
494
494
  export declare const getMapTimeSliderSecondsPerPx: ((state: {
495
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
496
- ui?: UIStoreType;
497
- webmap?: WebMapState;
498
- services?: import("../types").ServiceState;
499
- layers?: import("../types").LayerState;
500
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
501
- }, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
495
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
496
+ ui?: UIStoreType | undefined;
497
+ webmap?: WebMapState | undefined;
498
+ services?: import("../types").ServiceState | undefined;
499
+ layers?: import("../types").LayerState | undefined;
500
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
501
+ }, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
502
502
  clearCache: () => void;
503
503
  }> & {
504
504
  clearCache: () => void;
@@ -512,13 +512,13 @@ export declare const getMapTimeSliderSecondsPerPx: ((state: {
512
512
  * @returns {number} returnType: number - the number of scaleto seconds pixel
513
513
  */
514
514
  export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
515
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
516
- ui?: UIStoreType;
517
- webmap?: WebMapState;
518
- services?: import("../types").ServiceState;
519
- layers?: import("../types").LayerState;
520
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
521
- }, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
515
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
516
+ ui?: UIStoreType | undefined;
517
+ webmap?: WebMapState | undefined;
518
+ services?: import("../types").ServiceState | undefined;
519
+ layers?: import("../types").LayerState | undefined;
520
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
521
+ }, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
522
522
  clearCache: () => void;
523
523
  }> & {
524
524
  clearCache: () => void;
@@ -532,13 +532,13 @@ export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
532
532
  * @returns {boolean} returnType: boolean
533
533
  */
534
534
  export declare const isTimestepAuto: ((state: {
535
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
536
- ui?: UIStoreType;
537
- webmap?: WebMapState;
538
- services?: import("../types").ServiceState;
539
- layers?: import("../types").LayerState;
540
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
541
- }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
535
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
536
+ ui?: UIStoreType | undefined;
537
+ webmap?: WebMapState | undefined;
538
+ services?: import("../types").ServiceState | undefined;
539
+ layers?: import("../types").LayerState | undefined;
540
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
541
+ }, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (boolean | undefined) & {
542
542
  clearCache: () => void;
543
543
  }> & {
544
544
  clearCache: () => void;
@@ -552,13 +552,13 @@ export declare const isTimestepAuto: ((state: {
552
552
  * @returns {boolean} returnType: boolean
553
553
  */
554
554
  export declare const isTimeSliderHoverOn: ((state: {
555
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
556
- ui?: UIStoreType;
557
- webmap?: WebMapState;
558
- services?: import("../types").ServiceState;
559
- layers?: import("../types").LayerState;
560
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
561
- }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
555
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
556
+ ui?: UIStoreType | undefined;
557
+ webmap?: WebMapState | undefined;
558
+ services?: import("../types").ServiceState | undefined;
559
+ layers?: import("../types").LayerState | undefined;
560
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
561
+ }, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (boolean | undefined) & {
562
562
  clearCache: () => void;
563
563
  }> & {
564
564
  clearCache: () => void;
@@ -572,13 +572,13 @@ export declare const isTimeSliderHoverOn: ((state: {
572
572
  * @returns {boolean} returnType: boolean
573
573
  */
574
574
  export declare const isZoomControlsVisible: ((state: {
575
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
576
- ui?: UIStoreType;
577
- webmap?: WebMapState;
578
- services?: import("../types").ServiceState;
579
- layers?: import("../types").LayerState;
580
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
581
- }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
575
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
576
+ ui?: UIStoreType | undefined;
577
+ webmap?: WebMapState | undefined;
578
+ services?: import("../types").ServiceState | undefined;
579
+ layers?: import("../types").LayerState | undefined;
580
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
581
+ }, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (boolean | undefined) & {
582
582
  clearCache: () => void;
583
583
  }> & {
584
584
  clearCache: () => void;
@@ -592,13 +592,13 @@ export declare const isZoomControlsVisible: ((state: {
592
592
  * @returns {boolean} returnType: boolean
593
593
  */
594
594
  export declare const isTimeSliderVisible: ((state: {
595
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
596
- ui?: UIStoreType;
597
- webmap?: WebMapState;
598
- services?: import("../types").ServiceState;
599
- layers?: import("../types").LayerState;
600
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
601
- }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
595
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
596
+ ui?: UIStoreType | undefined;
597
+ webmap?: WebMapState | undefined;
598
+ services?: import("../types").ServiceState | undefined;
599
+ layers?: import("../types").LayerState | undefined;
600
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
601
+ }, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (boolean | undefined) & {
602
602
  clearCache: () => void;
603
603
  }> & {
604
604
  clearCache: () => void;
@@ -613,13 +613,13 @@ export declare const isTimeSliderVisible: ((state: {
613
613
  * @returns {boolean} returnType: boolean
614
614
  */
615
615
  export declare const getIsLayerActiveLayer: ((state: {
616
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
617
- ui?: UIStoreType;
618
- webmap?: WebMapState;
619
- services?: import("../types").ServiceState;
620
- layers?: import("../types").LayerState;
621
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
622
- }, params_0: string, params_1: {}) => boolean) & import("reselect").OutputSelectorFields<(args_0: string, args_1: any) => boolean & {
616
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
617
+ ui?: UIStoreType | undefined;
618
+ webmap?: WebMapState | undefined;
619
+ services?: import("../types").ServiceState | undefined;
620
+ layers?: import("../types").LayerState | undefined;
621
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
622
+ }, params_0: string, params_1: {}) => boolean) & import("reselect").OutputSelectorFields<(args_0: string | undefined, args_1: any) => boolean & {
623
623
  clearCache: () => void;
624
624
  }> & {
625
625
  clearCache: () => void;
@@ -633,12 +633,12 @@ export declare const getIsLayerActiveLayer: ((state: {
633
633
  * @returns {string} returnType: string - the mapId, or null if not found
634
634
  */
635
635
  export declare const getMapIdFromLayerId: ((state: {
636
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
637
- ui?: UIStoreType;
638
- webmap?: WebMapState;
639
- services?: import("../types").ServiceState;
640
- layers?: import("../types").LayerState;
641
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
636
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
637
+ ui?: UIStoreType | undefined;
638
+ webmap?: WebMapState | undefined;
639
+ services?: import("../types").ServiceState | undefined;
640
+ layers?: import("../types").LayerState | undefined;
641
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
642
642
  }, params_0: string) => string) & import("reselect").OutputSelectorFields<((args_0: WebMapState, args_1: string) => string) & {
643
643
  clearCache: () => void;
644
644
  }> & {
@@ -654,12 +654,12 @@ export declare const getMapIdFromLayerId: ((state: {
654
654
  * @returns {string} returnType: string - the layerId, or null if not found
655
655
  */
656
656
  export declare const getLayerIdByLayerName: ((state: {
657
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
658
- ui?: UIStoreType;
659
- webmap?: WebMapState;
660
- services?: import("../types").ServiceState;
661
- layers?: import("../types").LayerState;
662
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
657
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
658
+ ui?: UIStoreType | undefined;
659
+ webmap?: WebMapState | undefined;
660
+ services?: import("../types").ServiceState | undefined;
661
+ layers?: import("../types").LayerState | undefined;
662
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
663
663
  }, params_0: string, params_1: {}) => string) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: string) => string) & {
664
664
  clearCache: () => void;
665
665
  }> & {
@@ -675,12 +675,12 @@ export declare const getLayerIdByLayerName: ((state: {
675
675
  * @returns {number} returnType: index number or -1 if not found
676
676
  */
677
677
  export declare const getLayerIndexByLayerId: ((state: {
678
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
679
- ui?: UIStoreType;
680
- webmap?: WebMapState;
681
- services?: import("../types").ServiceState;
682
- layers?: import("../types").LayerState;
683
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
678
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
679
+ ui?: UIStoreType | undefined;
680
+ webmap?: WebMapState | undefined;
681
+ services?: import("../types").ServiceState | undefined;
682
+ layers?: import("../types").LayerState | undefined;
683
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
684
684
  }, params_0: string, params_1: {}) => number) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: string) => number) & {
685
685
  clearCache: () => void;
686
686
  }> & {
@@ -696,12 +696,12 @@ export declare const getLayerIndexByLayerId: ((state: {
696
696
  * @returns {object} returnType: layer, or null if not found
697
697
  */
698
698
  export declare const getLayerByLayerIndex: ((state: {
699
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
700
- ui?: UIStoreType;
701
- webmap?: WebMapState;
702
- services?: import("../types").ServiceState;
703
- layers?: import("../types").LayerState;
704
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
699
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
700
+ ui?: UIStoreType | undefined;
701
+ webmap?: WebMapState | undefined;
702
+ services?: import("../types").ServiceState | undefined;
703
+ layers?: import("../types").LayerState | undefined;
704
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
705
705
  }, params_0: string, params_1: {}) => Layer) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: number) => Layer) & {
706
706
  clearCache: () => void;
707
707
  }> & {
@@ -715,12 +715,12 @@ export declare const getLayerByLayerIndex: ((state: {
715
715
  * @returns {array} returnType: array of dimension names
716
716
  */
717
717
  export declare const getAllUniqueDimensions: ((state: {
718
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
719
- ui?: UIStoreType;
720
- webmap?: WebMapState;
721
- services?: import("../types").ServiceState;
722
- layers?: import("../types").LayerState;
723
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
718
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
719
+ ui?: UIStoreType | undefined;
720
+ webmap?: WebMapState | undefined;
721
+ services?: import("../types").ServiceState | undefined;
722
+ layers?: import("../types").LayerState | undefined;
723
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
724
724
  }) => string[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: AppStore) => string[]) & {
725
725
  clearCache: () => void;
726
726
  }> & {
@@ -735,13 +735,13 @@ export declare const getAllUniqueDimensions: ((state: {
735
735
  * @returns {object} returnType: latitude and longitude of pin
736
736
  */
737
737
  export declare const getPinLocation: ((state: {
738
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
739
- ui?: UIStoreType;
740
- webmap?: WebMapState;
741
- services?: import("../types").ServiceState;
742
- layers?: import("../types").LayerState;
743
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
744
- }, params_0: string) => import("./types").MapLocation) & import("reselect").OutputSelectorFields<((args_0: WebMap) => import("./types").MapLocation) & {
738
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
739
+ ui?: UIStoreType | undefined;
740
+ webmap?: WebMapState | undefined;
741
+ services?: import("../types").ServiceState | undefined;
742
+ layers?: import("../types").LayerState | undefined;
743
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
744
+ }, params_0: string) => import("./types").MapLocation | undefined) & import("reselect").OutputSelectorFields<((args_0: WebMap) => import("./types").MapLocation | undefined) & {
745
745
  clearCache: () => void;
746
746
  }> & {
747
747
  clearCache: () => void;
@@ -755,13 +755,13 @@ export declare const getPinLocation: ((state: {
755
755
  * @returns {boolean} returnType: boolean
756
756
  */
757
757
  export declare const getDisableMapPin: ((state: {
758
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
759
- ui?: UIStoreType;
760
- webmap?: WebMapState;
761
- services?: import("../types").ServiceState;
762
- layers?: import("../types").LayerState;
763
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
764
- }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
758
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
759
+ ui?: UIStoreType | undefined;
760
+ webmap?: WebMapState | undefined;
761
+ services?: import("../types").ServiceState | undefined;
762
+ layers?: import("../types").LayerState | undefined;
763
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
764
+ }, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (boolean | undefined) & {
765
765
  clearCache: () => void;
766
766
  }> & {
767
767
  clearCache: () => void;
@@ -775,13 +775,13 @@ export declare const getDisableMapPin: ((state: {
775
775
  * @returns {boolean} returnType: boolean
776
776
  */
777
777
  export declare const getDisplayMapPin: ((state: {
778
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
779
- ui?: UIStoreType;
780
- webmap?: WebMapState;
781
- services?: import("../types").ServiceState;
782
- layers?: import("../types").LayerState;
783
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
784
- }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
778
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
779
+ ui?: UIStoreType | undefined;
780
+ webmap?: WebMapState | undefined;
781
+ services?: import("../types").ServiceState | undefined;
782
+ layers?: import("../types").LayerState | undefined;
783
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
784
+ }, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => (boolean | undefined) & {
785
785
  clearCache: () => void;
786
786
  }> & {
787
787
  clearCache: () => void;
@@ -795,13 +795,13 @@ export declare const getDisplayMapPin: ((state: {
795
795
  * @returns {number} selectedFeatureIndex: the index of the selected geojson feature
796
796
  */
797
797
  export declare const getSelectedFeatureIndex: ((state: {
798
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
799
- ui?: UIStoreType;
800
- webmap?: WebMapState;
801
- services?: import("../types").ServiceState;
802
- layers?: import("../types").LayerState;
803
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
804
- }, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
798
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
799
+ ui?: UIStoreType | undefined;
800
+ webmap?: WebMapState | undefined;
801
+ services?: import("../types").ServiceState | undefined;
802
+ layers?: import("../types").LayerState | undefined;
803
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
804
+ }, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
805
805
  clearCache: () => void;
806
806
  }> & {
807
807
  clearCache: () => void;
@@ -815,13 +815,13 @@ export declare const getSelectedFeatureIndex: ((state: {
815
815
  * @returns {boolean} returnType: boolean or undefined
816
816
  */
817
817
  export declare const getActiveMapPresetId: ((state: {
818
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
819
- ui?: UIStoreType;
820
- webmap?: WebMapState;
821
- services?: import("../types").ServiceState;
822
- layers?: import("../types").LayerState;
823
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
824
- }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
818
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
819
+ ui?: UIStoreType | undefined;
820
+ webmap?: WebMapState | undefined;
821
+ services?: import("../types").ServiceState | undefined;
822
+ layers?: import("../types").LayerState | undefined;
823
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
824
+ }, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
825
825
  clearCache: () => void;
826
826
  }> & {
827
827
  clearCache: () => void;
@@ -835,13 +835,13 @@ export declare const getActiveMapPresetId: ((state: {
835
835
  * @returns {boolean} returnType: id or undefined
836
836
  */
837
837
  export declare const getLegendId: ((state: {
838
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
839
- ui?: UIStoreType;
840
- webmap?: WebMapState;
841
- services?: import("../types").ServiceState;
842
- layers?: import("../types").LayerState;
843
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
844
- }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
838
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
839
+ ui?: UIStoreType | undefined;
840
+ webmap?: WebMapState | undefined;
841
+ services?: import("../types").ServiceState | undefined;
842
+ layers?: import("../types").LayerState | undefined;
843
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
844
+ }, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
845
845
  clearCache: () => void;
846
846
  }> & {
847
847
  clearCache: () => void;
@@ -855,13 +855,13 @@ export declare const getLegendId: ((state: {
855
855
  * @returns {MapPreset} returnType: MapPreset
856
856
  */
857
857
  export declare const getMapPreset: ((state: {
858
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
859
- ui?: UIStoreType;
860
- webmap?: WebMapState;
861
- services?: import("../types").ServiceState;
862
- layers?: import("../types").LayerState;
863
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
864
- }, params_0: string) => MapPreset) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: import("../types").ReduxLayer[], args_2: import("../types").ReduxLayer[], args_3: Bbox, args_4: string, args_5: string, args_6: boolean, args_7: boolean, args_8: boolean, args_9: boolean, args_10: boolean, args_11: number, args_12: number, args_13: boolean, args_14: string, args_15: UIStoreType) => MapPreset) & {
858
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
859
+ ui?: UIStoreType | undefined;
860
+ webmap?: WebMapState | undefined;
861
+ services?: import("../types").ServiceState | undefined;
862
+ layers?: import("../types").LayerState | undefined;
863
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
864
+ }, params_0: string) => MapPreset) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: import("../types").ReduxLayer[], args_2: import("../types").ReduxLayer[], args_3: Bbox, args_4: string, args_5: string | undefined, args_6: boolean, args_7: boolean, args_8: boolean | undefined, args_9: boolean | undefined, args_10: boolean | undefined, args_11: number | undefined, args_12: number | undefined, args_13: boolean | undefined, args_14: string | undefined, args_15: UIStoreType) => MapPreset) & {
865
865
  clearCache: () => void;
866
866
  }> & {
867
867
  clearCache: () => void;
@@ -875,12 +875,12 @@ export declare const getMapPreset: ((state: {
875
875
  * @returns {boolean} returnType: boolean
876
876
  */
877
877
  export declare const getIsMapPresetLoading: ((state: {
878
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
879
- ui?: UIStoreType;
880
- webmap?: WebMapState;
881
- services?: import("../types").ServiceState;
882
- layers?: import("../types").LayerState;
883
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
878
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
879
+ ui?: UIStoreType | undefined;
880
+ webmap?: WebMapState | undefined;
881
+ services?: import("../types").ServiceState | undefined;
882
+ layers?: import("../types").LayerState | undefined;
883
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
884
884
  }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
885
885
  clearCache: () => void;
886
886
  }> & {
@@ -895,12 +895,12 @@ export declare const getIsMapPresetLoading: ((state: {
895
895
  * @returns {boolean} returnType: boolean
896
896
  */
897
897
  export declare const getHasMapPresetChanges: ((state: {
898
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
899
- ui?: UIStoreType;
900
- webmap?: WebMapState;
901
- services?: import("../types").ServiceState;
902
- layers?: import("../types").LayerState;
903
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
898
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
899
+ ui?: UIStoreType | undefined;
900
+ webmap?: WebMapState | undefined;
901
+ services?: import("../types").ServiceState | undefined;
902
+ layers?: import("../types").LayerState | undefined;
903
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
904
904
  }, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
905
905
  clearCache: () => void;
906
906
  }> & {
@@ -915,13 +915,13 @@ export declare const getHasMapPresetChanges: ((state: {
915
915
  * @returns {Error} returnType: string
916
916
  */
917
917
  export declare const getMapPresetError: ((state: {
918
- syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
919
- ui?: UIStoreType;
920
- webmap?: WebMapState;
921
- services?: import("../types").ServiceState;
922
- layers?: import("../types").LayerState;
923
- layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
924
- }, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
918
+ syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
919
+ ui?: UIStoreType | undefined;
920
+ webmap?: WebMapState | undefined;
921
+ services?: import("../types").ServiceState | undefined;
922
+ layers?: import("../types").LayerState | undefined;
923
+ layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
924
+ }, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
925
925
  clearCache: () => void;
926
926
  }> & {
927
927
  clearCache: () => void;