If you observe an apparent max zoom of approximately 50, that sounds like a limitation of JavaScript's number class, which uses http://en.wikipedia.org/wiki/Double_precision_floating-point_format, which can only exactly represent numbers up to 2^52.
However, JavaScript also casts numbers to signed 32-bit integers for bit operations, which would make the effective maximum zoom 30 or 31 where we use bit operations for speed. So I wouldn't expect zoom greater than 30 to work. If you can provide a link to your site we could comment in more detail. - Ben On Fri, Sep 9, 2011 at 3:14 AM, neffk <kevin.l.n...@gmail.com> wrote: > > I'm displaying a stack of images. I'm working with a series of 256 > test images, but even with the maximum set in the options used to > initialize the map, I only get about the first 50 images. > > tileSize: new google.maps.Size(256, 256), > isPng: true, > maxZoom: 255, > minZoom: 0, > name: "die,z-stack" > > Is there some arbitrary maxium zoom level? > > -- > 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 > google-maps-js-api-v3@googlegroups.com. > To unsubscribe from this group, send email to > google-maps-js-api-v3+unsubscr...@googlegroups.com. > 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 google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.