diff --git a/src/components/map/MapInteraction.js b/src/components/map/MapInteraction.js index 975bf59..60908ff 100644 --- a/src/components/map/MapInteraction.js +++ b/src/components/map/MapInteraction.js @@ -259,6 +259,9 @@ function MapInteraction({ if (event.key === "m" && !disabledControls.includes("measure")) { onSelectedToolChange("measure"); } + if (event.key === "q" && !disabledControls.includes("pointer")) { + onSelectedToolChange("pointer"); + } } function handleKeyUp(event) {