I am upgrading a company React project and we use class based components. Version 4 of react-leaflet does not allow access to Map without using the useMap hook. We need to be able to keep our code consistent and not be forced to use hooks.
Bug report in v4
Before opening an issue, make sure to read the contributing guide and understand this is a bug tracker, not a support platform.
Please make sure to check the following boxes before submitting an issue.\
Issues opened without using this template will be closed unless they have a good reason not to follow this template.
[x] All peer dependencies are installed: React, ReactDOM and Leaflet.
[x] Using the latest version of React and ReactDOM v18.
[x] Using the supported version of Leaflet (v1.8.0 minimum) and its corresponding CSS file is loaded.
I am upgrading a company React project and we use class based components. Version 4 of
react-leaflet
does not allow access toMap
without using theuseMap
hook. We need to be able to keep our code consistent and not be forced to use hooks.Bug report in v4
Before opening an issue, make sure to read the contributing guide and understand this is a bug tracker, not a support platform.
Please make sure to check the following boxes before submitting an issue.\ Issues opened without using this template will be closed unless they have a good reason not to follow this template.
Expected behavior
Access to Map is doable in class based components without hooks.
Actual behavior
In version 4 we are forced to use hooks.