-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathBackgroundLayerChooser.tsx
296 lines (270 loc) · 8.68 KB
/
BackgroundLayerChooser.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import './BackgroundLayerChooser.less';
import React, {
useEffect,
useRef,
useState
} from 'react';
import {
faBan,
faChevronLeft,
faChevronRight} from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import OlOverviewMap from 'ol/control/OverviewMap';
import OlLayerBase from 'ol/layer/Base';
import OlLayerGroup from 'ol/layer/Group';
import OlLayerImage from 'ol/layer/Image';
import OlLayer from 'ol/layer/Layer';
import OlLayerTile from 'ol/layer/Tile';
import { ObjectEvent } from 'ol/Object';
import OlSourceImageWMS from 'ol/source/ImageWMS';
import OlSourceOSM from 'ol/source/OSM';
import OlSourceTileWMS from 'ol/source/TileWMS';
import { getUid } from 'ol/util';
import OlView from 'ol/View';
import { apply as applyMapboxStyle } from 'ol-mapbox-style';
import useMap from '@terrestris/react-util/dist/Hooks/useMap/useMap';
import BackgroundLayerPreview from '../BackgroundLayerPreview/BackgroundLayerPreview';
import SimpleButton from '../Button/SimpleButton/SimpleButton';
export interface BackgroundLayerChooserProps {
/**
* Array of layers to be displayed in the BackgroundLayerChooser.
*/
layers: OlLayer[];
/**
* Adds a button that clears the backgroundlayer.
*/
allowEmptyBackground?: boolean;
/**
* Filters the backgroundlayers by a function.
*/
backgroundLayerFilter?: (layer: OlLayerBase) => boolean;
/**
* Select a Layer that should be active initially.
*/
initiallySelectedLayer?: OlLayer;
/**
* Customize the tooltip.
*/
buttonTooltip?: string;
/**
* Sets the title of the No-Background Button
*/
noBackgroundTitle?: string;
}
/**
* This component supports TileWMS and ImageWMS layers. Besides that, mapbox vector tile layers are
* also supported in a limited way:
*
* * you'll need to render the vector tile layer inside of a group layer
* * the group layer needs to have a property isVectorTile set to true
* * the group layer needs to have a property url pointing to the json description
*/
export const BackgroundLayerChooser: React.FC<BackgroundLayerChooserProps> = ({
layers,
allowEmptyBackground = false,
buttonTooltip = 'Change background layer',
initiallySelectedLayer,
noBackgroundTitle = 'No Background',
backgroundLayerFilter = (l: OlLayerBase) => !!l.get('isBackgroundLayer')
}) => {
const map = useMap();
const [zoom, setZoom] = useState(map?.getView()?.getZoom());
const [center, setCenter] = useState(map?.getView()?.getCenter());
const [layerOptionsVisible, setLayerOptionsVisible] = useState<boolean>(false);
const [selectedLayer, setSelectedLayer] = useState<OlLayer>();
const [isBackgroundImage, setIsBackgroundImage] = useState<boolean>(false);
const mapTarget = useRef(null);
useEffect(() => {
if (map && layerOptionsVisible) {
setCenter(map.getView().getCenter());
setZoom(map.getView().getZoom());
const centerListener = (evt: ObjectEvent) => {
setCenter(evt.target.getCenter());
};
const resolutionListener = (evt: ObjectEvent) => {
setZoom(evt.target.getZoom());
};
map.getView().on('change:center', centerListener);
map.getView().on('change:resolution', resolutionListener);
return () => {
map.getView().un('change:center', centerListener);
map.getView().un('change:resolution', resolutionListener);
};
}
return undefined;
}, [map, layerOptionsVisible]);
useEffect(() => {
const activeLayerCand = layers.find(l => l.getVisible());
if (!initiallySelectedLayer) {
setSelectedLayer(activeLayerCand as OlLayer);
}
}, [initiallySelectedLayer, layers]);
useEffect(() => {
if (!selectedLayer || !map) {
return undefined;
}
const selectedLayerSource = selectedLayer.getSource();
let ovLayer: OlLayer | OlLayerGroup | null = null;
if (selectedLayer instanceof OlLayerTile) {
let newSource: OlSourceOSM | OlSourceTileWMS | null = null;
if (selectedLayerSource instanceof OlSourceTileWMS) {
newSource = new OlSourceTileWMS({
url: selectedLayerSource.getUrls()?.[0],
params: selectedLayerSource.getParams(),
tileLoadFunction: selectedLayerSource.getTileLoadFunction()
});
} else if (selectedLayerSource instanceof OlSourceOSM) {
newSource = new OlSourceOSM();
}
if (newSource) {
ovLayer = new OlLayerTile({
source: newSource
});
}
} else if (selectedLayer instanceof OlLayerImage) {
let newSource: OlSourceImageWMS | null = null;
if (selectedLayerSource instanceof OlSourceImageWMS) {
newSource = new OlSourceImageWMS({
url: selectedLayerSource.getUrl(),
params: selectedLayerSource.getParams(),
imageLoadFunction: selectedLayerSource.getImageLoadFunction()
});
}
if (newSource) {
ovLayer = new OlLayerImage({
source: selectedLayer.getSource()
});
}
} else if (selectedLayer instanceof OlLayerGroup) {
if (selectedLayer.get('isVectorTile')) {
ovLayer = new OlLayerGroup();
applyMapboxStyle(ovLayer, selectedLayer.get('url'));
} else {
ovLayer = new OlLayerGroup({
layers: selectedLayer.getLayers()
});
}
}
if (ovLayer && mapTarget.current) {
const overViewControl = new OlOverviewMap({
collapsible: false,
target: mapTarget.current,
className: 'ol-overviewmap react-geo-bg-layer-chooser-overviewmap',
layers: [ovLayer],
view: new OlView({
projection: map.getView().getProjection()
})
});
map.addControl(overViewControl);
return () => {
map.removeControl(overViewControl);
};
}
return undefined;
}, [selectedLayer, map]);
const onLayerSelect = (layer: OlLayer) => {
setLayerOptionsVisible(false);
setSelectedLayer(layer);
setIsBackgroundImage(false);
};
return (
<div className="bg-layer-chooser">
{
layerOptionsVisible && (
<div className="layer-cards">
{
layers.map(layer => (
<BackgroundLayerPreview
key={getUid(layer)}
activeLayer={selectedLayer}
onClick={l => onLayerSelect(l)}
layer={layer}
backgroundLayerFilter={backgroundLayerFilter}
zoom={zoom}
center={center}
/>
))
}
{
allowEmptyBackground &&
<div
className={`no-background${selectedLayer ? '' : ' selected'}`}
onMouseOver={() => {
selectedLayer?.setVisible(false);
}}
onMouseLeave={() => {
selectedLayer?.setVisible(true);
}}
onClick={() => {
selectedLayer?.setVisible(false);
setSelectedLayer(undefined);
setLayerOptionsVisible(false);
setIsBackgroundImage(true);
}}
>
<div
className="no-background-preview"
>
<FontAwesomeIcon
icon={faBan}
/>
</div>
<span
className="layer-title"
>
{noBackgroundTitle}
</span>
</div>
}
</div>
)
}
<SimpleButton
className={`change-bg-btn${layerOptionsVisible ? ' toggled' : ''}`}
size="small"
tooltip={buttonTooltip}
icon={layerOptionsVisible ?
<FontAwesomeIcon
icon={faChevronRight}
/> :
<FontAwesomeIcon
icon={faChevronLeft}
/>
}
onClick={() => setLayerOptionsVisible(!layerOptionsVisible)}
/>
<div
className="bg-preview"
>
{
!isBackgroundImage ?
<div
id="overview-map"
ref={mapTarget}
/> :
<div
className="no-background-preview"
>
<FontAwesomeIcon
icon={faBan}
/>
</div>
}
{
selectedLayer ?
<span
className="layer-title"
>
{selectedLayer.get('name')}
</span> :
<span
className="layer-title"
>
{noBackgroundTitle}
</span>
}
</div>
</div>
);
};
export default BackgroundLayerChooser;