Based on my experience with google maps, sometimes gray patches appear when there is no map data available in the place you are currently viewing (especially when the zoom ratio is high) or when you slowly connect to the Internet, so the map data takes a lot of time to load / crash!
But other factors can also be the cause - perhaps.
When you initialize your map, say, for example:
var map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(37.4419, -122.1419), 13);
seconds parameter for map.setCenter - scaling factor - in this case 13 .
You can also set a new zoom level for such a map:
map.setZoom(5);
Read more here ...
nemesisfixx
source share