The layers above map tiles are called panes
http://code.google.com/apis/maps/documentation/javascript/reference.html#MapPanes

Currently you are appending your overlay on overlayImage (pane 3). The
georss overlay resides in overlayLayer (pane 1). There is mapPane
(pane 0) available below that.

In the onAdd() function, instead of

    panes.overlayImage.appendChild(this.div_);

try

    panes.mapPane.appendChild(this.div_);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to