views:

26

answers:

1

This image should explain my problem:

alt text

I'm using version 3 of the Google Maps API (if relevant)

A: 

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..

Michal