Maps API infoWindow MouseOver -
how change mouse on event infowindow in maps api v3?
i need infowindow keeps open while mouse over
something like:
marker.addlistener('mouseover', function() { infowindow.open(map, this); infowindow.mouseover(function() { console.log("over") } ); infowindow.mouseout(function() { console.log("out") } ); }); marker.addlistener('mouseout', function() { infowindow.close(); });
how can this?
Comments
Post a Comment