I'm having trouble integrating OverlappingMarkerSpiderfier with React-Leaflet and using FeatureGroup for panning on the map. FeatureGroups are really useful when you have complicated panning logic.
Here is a plain JS demo. The markers spiderfy and the pan button works with no issues.
Here is the react-leaflet demo. The panning will fail with the following error if spiderfy is enabled/checked in the UI. This is based on this SO post.
layer.getLatLng is not a function
I think the problem is that with regular JS, I can add the markers array to both oms
and the featureGroup
imperatively but with React-leaflet, I don't see how I can achieve the same result.
Is the error because <Spiderfy>
layer does not have a getLatLng
function for some reason even though I am extending the MapLayer.
I'm unsure of what needs fixing, the JS version seems to work so the OverlappingMarkerSpiderfier library likely doesn't need changes. It could be a React-leaflet specific problem/limitation that can possibly be fixed with a custom FeatureGroup/MapLayer?
It appears the error
occurs since FeatureGroup.getBounds function expects underlying layers to implement either
getBounds
orgetLatLng
methods which is not the case with customSpiderfy.js
component where container (layerContainer
prop) is ofL.layerGroup
type.One option to consider would be to refactor
Spiderfy.js
component:L.layerGroup
as a layer container16.8
or above) replaceES6 class
component with function to implementSpiderfy
componentSpiderfy.js
componentThis way
FeatureGroup.getBounds
function should return the expected result, identical to provided in plain JS demo.Forked example