On Fri, Dec 18, 2009 at 2:45 AM, bratliff <[email protected]> wrote:
> On Dec 17, 1:05 pm, bratliff <[email protected]> wrote: > > Actually, I may be able to abandon the use of OverlayView entirely. > > The only things I am using are: > > this.getProjection().fromLatLngToDivPixel(this.getMap.getCenter > ()); > > plus > > this.getPanes(); > > If both getProjection() & getPanes() were methods of the map, I could > eliminate OverlayView. Everything happens in the "idle" & "draw" > event listeners for the map. "idle" has to be added because it is not > automatic. "draw" could be replaced by "zoomChanged". Because > "PolyCluster" manages many polys, it is never removed. The projection and the panes are in delay-loaded code, so they're not synchronously available. So far we've worked to avoid exposing asynchronously loaded code. The projection is a common request though, so we're thinking about how to provide it. -- > > 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]<google-maps-js-api-v3%[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.
