blob: 6384717682ecca057aa27d4335461befb7f560fa (
plain)
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
|
import { useEffect } from 'react';
import { useSelector } from 'react-redux';
import { map } from './Map';
const SelectedDeviceMap = () => {
const mapCenter = useSelector((state) => {
if (state.devices.selectedId) {
const position = state.positions.items[state.devices.selectedId] || null;
if (position) {
return { deviceId: state.devices.selectedId, position: [position.longitude, position.latitude] };
}
}
return null;
});
useEffect(() => {
if (mapCenter) {
map.easeTo({ center: mapCenter.position });
}
}, [mapCenter]);
return null;
};
export default SelectedDeviceMap;
|