> found one pretty example from Bill Chadwick for v2 and tried to > redesign it to use v3, but it doesn't work by some reason.
If you shared a link to that, people may be able to help you with it > this.divs_ = new Array(); this.divs_ is an (empty) javascript array, there are no DIVs of any kind involved here. > this.getPanes().overlayLayer.appendChild(this.divs_); You attempt to append an empty javascript array to the DOM. You cannot insert javascript variables into the DOM, you must insert HTML elements of some kind. -- 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.
