react-leaflet-pixi-overlay
react-leaflet-pixi-overlay copied to clipboard
Popup does not show.
My setup: react: 17.0.2 react-leaflet: 3.2.5 react-leaflet-pixi-overlay: 3.0.0 Browser: firefox
const markers = data.map(item=> ({
id: item._id,
iconColor: "red",
position: [item.latitude, item.longitude],
popup: "Test",
onClick: () => {
},
tooltip: renderToString(<ItemComponent item={item}/>),
}))
When i am hovering over marker data the tooltip is correctly displayed. When i click on the marker nothing happens. (I would expect to see popup).
Hi, I believe it was just fixed in the newest version. Cheers for raising the issue.
@knapcio Does not work
Opening the popup still doesn't work
Same problem here