three version: 0.169.0
@react-three/fiber version: 8.17.10
react-three-map version: 0.8.2
node version: v20.11.1
npm (or yarn) version: 10.2.4
Problem description:
Usually I can easily add code to my model tag in my canvas to change the cursor to a pointer in a regular R3F app, however this doesnt seem to work in react-three-map. No matter what I do, the cursor stays the "grab" cursor.
Relevant code:
<Model
position={[-3.855, 0, 180.526]}
onClick={handleClick}
onPointerEnter={() => {
document.body.style.cursor = "pointer";
}}
onPointerLeave={() => {
document.body.style.cursor = "default";
}}
/>
Suggested solution:
threeversion: 0.169.0@react-three/fiberversion: 8.17.10react-three-mapversion: 0.8.2nodeversion: v20.11.1npm(oryarn) version: 10.2.4Problem description:
Usually I can easily add code to my model tag in my canvas to change the cursor to a pointer in a regular R3F app, however this doesnt seem to work in react-three-map. No matter what I do, the cursor stays the "grab" cursor.
Relevant code:
Suggested solution: