This image should explain my problem:
I'm using version 3 of the Google Maps API (if relevant)
This image should explain my problem:
I'm using version 3 of the Google Maps API (if relevant)
You can get the z-index of the infoWindow by using the getZIndex() mthod and set the zIndex for your overlay at anything lower than that or you can explicitly set the zIndex of an info window using setZIndex() method and set the zIndex to something really high..
so ..
z = yourInfoWindow.getZIndex(); yourDivID.style.zIndex = z-1;
or ..
yourInfoWindow.setZIndex(666);
If you post the code or a link to your app I could help you further..