'I want to open popover on react-google-map
I want to open a popover when a particular shape is clicked like this

This my code of what i have tried
<Popover
placement="top"
content={() => content(poly)}
trigger="click"
className="crime-marker"
>
{" "}
<Polygon
ref={(ref) => {
_polyRef(ref);
}}
paths={poly.coord}
onClick={(value) => console.log(poly)}
onMouseDown={() => {
_onMousedown(index);
}}
/>
</Popover>
But Nothing is happening when i am trying this.. Can somebody help me with this Thankyou in advance
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
