I figured it out...
As long as I keep the zIndex sane (div zIndex above all other
GMarkers), Firefox works great.
Achieve this with: var markerOptions { zIndexProcess: function()
{ return MARKER_ZINDEX; }, ... };
As long as I insert the div into the Marker pane with zIndex above all
other Markers, Chrome works great.
Achieve this with the same zIndex stuff as Firefox and:
map.getPane(G_MAP_MARKER_PANE).appendChild(div);
As long as I make the div affect the layout (give it a color with a
near invisible transparency of 1%), IE sticks it into the correct
panel making VML work too.
Achieve this with styles:
div.style.backgroundColor = '#000000';
div.style.opacity = '0.01'; // Firefox, Chrome (IE8?)
div.style.filter = 'alpha(opacity=1)'; // IE7
All these together make it work in all 3 browsers. Hopefully this will
be of help to others.
Good luck!
-Shadow
--
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.