In the toolbar's event handlers for the mouseover/mouseout event,
check if the infoWindow is open, and if it is, do nothing.

function mymouseover(i) {
  if (!map.getInfoWindow().isHidden()) {
    return;
  }
  map.removeOverlay(cmarkers[i]);
  map.addOverlay(hmarkers[i]);
}


function mymouseout(i) {
  if (!map.getInfoWindow().isHidden()) {
    return;
  }
  map.removeOverlay(hmarkers[i]);
  map.addOverlay(cmarkers[i]);
}


--
Marcelo - http://maps.forum.nu
--


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to