Got it: - PolyCluster (http://www.provide.net/~bratliff/polycluster/polycluster.js) inherits from google.maps.OverlayView - (google.maps.)OverlayView inherits from google.maps.MVCObject - which defines MVCObject.prototype.L But: - PolyCluster.prototype.repair includes this code: l=this.L; if(l) { ... } The first time PolyCluster runs, the existence of MVCObject.prototype.L confuses the if statement, and PolyCluster proceeds to presume that .L is a DOM element.
On Wed, Dec 16, 2009 at 1:40 AM, bratliff <[email protected]> wrote: > I am encountering "Security Errors" on many pages. > > http://www.polyarc.us/polycluster/polygon.html > > produces: > > Security Error: Content at > http://maps.gstatic.com/intl/en_us/mapfiles/api-3/24/main.js > may not load data from > http://www.provide.net/~bratliff/polycluster/polygon.html. > > Error: a.A is not a function > Source File: http://maps.gstatic.com/intl/en_us/mapfiles/api-3/24/main.js > Line: 33 > > in the Firefox Error Console. > > v3.23 was OK > > -- > > 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.
