Google Maps not rendering completely on page?

I’m not able to reproduce the issue you are having, but it looks similar to another issue I’ve seen with google maps.

It looks like you might be running afoul of the way google maps determines which tiles are in view. It calculates this only once, when the map is loaded into the div the first time, and if the div grows, then not enough map will be drawn. Fortunately, this is easy to deal with. any time the container may have resized, use the checkResize() method on the map instance, and the clipping area will be recomputed from the container’s current size.

Leave a Comment