Hi, I was playing around with the demo examples and found a small error. Where do I report this? http://gmaps-samples-v3.googlecode.com/svn/trunk/infowindow_custom/infowindow-custom.html
I was actually trying to show the overlay without any click and it didn't work like I wanted it to. Digging in, I noticed that firefox error console was complaining 'a is null' in line 26 of main.js Traced it to line 188 in InfoBox.prototype.panMap function [code] google.maps.event.removeListener(this.boundsChangedListener_); [/code] needs to be changed to [code] if (this.boundsChangedListener_) google.maps.event.removeListener(this.boundsChangedListener_); [/code] Thanks. Jeba Singh Emmanuel -- 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.
