I want to open popover on react-google-map

233 Views Asked by At

I want to open a popover when a particular shape is clicked like this enter image description here

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

0

There are 0 best solutions below