I using Angular Google Maps(AGM) componet. I need to open info window on marker mouse hover. How can I retreive the infowindow instance in my function onM
infowindow
onM
You can add a mouseOut event and create a function to close the InfoWindow onMouseOut
{{m.name}} {{m.rating}} Daje onMouseOver(infoWindow, $event: MouseEvent) { infoWindow.open(); } onMouseOut(infoWindow, $event: MouseEvent) { infoWindow.close(); }