Going to need some help on this with someone who understands the HOC convention, it is a little over my head coming from Vuejs.
Would like to use this example to center and zoom the map when a set of locations is loaded as markers on the map. I have use in another project and it works great and is light on CPU.
What I need help with is making the markers prop on the MapClass component observable, so we can attach a handler anytime it changes and loop through to create a new bounds object which would then be able to set the zoom level.
Would appreciate anyone's expertise here who knows how to use the recompose library!
Side note: the recompose library is at EOL and will not be receiving future updates which can be a security concern if there are vulnerabilities...maybe we should consider removing this library to accommodate and go more vanilla React?
Going to need some help on this with someone who understands the HOC convention, it is a little over my head coming from Vuejs.
Would like to use this example to center and zoom the map when a set of locations is loaded as markers on the map. I have use in another project and it works great and is light on CPU.
What I need help with is making the
markersprop on theMapClasscomponent observable, so we can attach a handler anytime it changes and loop through to create a new bounds object which would then be able to set the zoom level.Would appreciate anyone's expertise here who knows how to use the
recomposelibrary!Side note: the
recomposelibrary is at EOL and will not be receiving future updates which can be a security concern if there are vulnerabilities...maybe we should consider removing this library to accommodate and go more vanilla React?