Prevent multiplying click handlers
This commit is contained in:
parent
c5b2ede9d2
commit
c031524bd4
@ -272,15 +272,16 @@ const Map: React.FC = () => {
|
||||
|
||||
map.current.addControl(new mapboxgl.FullscreenControl());
|
||||
map.current.addControl(new mapboxgl.NavigationControl());
|
||||
});
|
||||
|
||||
let singleClickTimeout: NodeJS.Timeout | null = null;
|
||||
map.current.on("click", "grid-layer", (e) => {
|
||||
console.log("click");
|
||||
const features = e.features;
|
||||
if (singleClickTimeout) return;
|
||||
singleClickTimeout = setTimeout(() => {
|
||||
singleClickTimeout = null;
|
||||
if (features && features[0]) {
|
||||
console.log("timeout");
|
||||
const cell: [number, number] = [
|
||||
features[0].properties!.cellX,
|
||||
features[0].properties!.cellY,
|
||||
@ -361,14 +362,22 @@ const Map: React.FC = () => {
|
||||
"line-width": 3,
|
||||
},
|
||||
});
|
||||
|
||||
const bounds = map.current.getBounds();
|
||||
console.log(bounds);
|
||||
if (!bounds.contains(nw) || !bounds.contains(se)) {
|
||||
console.log("out of viewport, panning");
|
||||
map.current.panTo(nw);
|
||||
}
|
||||
}, 400);
|
||||
}
|
||||
}, 200);
|
||||
});
|
||||
|
||||
map.current.on("dblclick", "grid-layer", (e) => {
|
||||
if (singleClickTimeout) clearTimeout(singleClickTimeout);
|
||||
singleClickTimeout = null;
|
||||
});
|
||||
});
|
||||
}, [setSelectedCell, data]);
|
||||
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user