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
|
import { useEffect, useState } from 'react';
import { kml } from '@tmcw/togeojson';
import { map } from '../core/Map';
import { useEffectAsync } from '../../reactHelper';
import { usePreference } from '../../common/preferences';
const PoiMap = () => {
const id = 'poi';
const poiLayer = usePreference('poiLayer');
const [data, setData] = useState(null);
useEffectAsync(async () => {
if (poiLayer) {
const file = await fetch(poiLayer);
const dom = new DOMParser().parseFromString(await file.text(), 'text/xml');
setData(kml(dom));
}
}, [poiLayer]);
useEffect(() => {
if (data) {
map.addSource(id, {
type: 'geojson',
data,
});
map.addLayer({
source: id,
id: 'poi-point',
type: 'circle',
paint: {
'circle-radius': 5,
'circle-color': '#3bb2d0',
},
});
map.addLayer({
source: id,
id: 'poi-title',
type: 'symbol',
layout: {
'text-field': '{name}',
'text-anchor': 'bottom',
'text-offset': [0, -0.5],
'text-font': ['Roboto Regular'],
'text-size': 12,
},
paint: {
'text-halo-color': 'white',
'text-halo-width': 1,
},
});
return () => {
if (map.getLayer('poi-point')) {
map.removeLayer('poi-point');
}
if (map.getLayer('poi-title')) {
map.removeLayer('poi-title');
}
if (map.getSource(id)) {
map.removeSource(id);
}
};
}
return null;
}, [data]);
return null;
};
export default PoiMap;
|