(e)
| 43 | |
| 44 | const map = useMapEvents({ |
| 45 | mousedown(e) { |
| 46 | if (!isDrag) { |
| 47 | setFirstPoint(e.latlng); |
| 48 | } |
| 49 | }, |
| 50 | mousemove(e) { |
| 51 | if (firstPoint) { |
| 52 | lastLatlngRef.current = adjustLng(e.latlng); |
nothing calls this directly
no outgoing calls
no test coverage detected