The Google GInfoWindow is always on the G_MAP_FLOAT_PANE, and that's always going to be below anything that's outside the map.getDragObject().
In fact the bottom line is that anything that moves with the map will always be below anything that doesn't move with the map (like GControls or divs that float over the map). Some alternatives that you might consider: 1. Make your div into a GControl so that the map will auto pan away from it. http://code.google.com/apis/maps/documentation/controls.html#Custom_Contr ols 2. Use a third party windowing system, like EBubbles, that doesn't move with the map, so it can float over the top of static divs. http://econym.org.uk/gmap/example_ebubble.htm 3. Allow your div to move with the map, and place it below the info window. E.g. by attaching it to G_MAP_MARKER_MOUSE_TARGET_PANE, or to G_MAP_FLOAT_PANE with a negative z-index setting. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
