I've run into the a is null error before but I thought it was one of those generic, 'I'm not really telling you what's wrong' kinds of errors. (thus, I cannot tell you how I solved it)
-- Sent from my Palm Pre Eightlines wrote: If I'm not mistaken this is the location to file a bug for the Maps V3 API. Once you file it could you please post back with the issue number so I can follow its resolution? I ran into this issue the other day. http://code.google.com/p/gmaps-api-issues/issues/entry?template=Maps%20API%20v3%20-%20Bug Thanks, Brent On Feb 11, 2:03 pm, graydot <[email protected]> wrote: > 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/in... > > 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. -- 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.
