Esa's Google Maps API examples. High Zoom Settings
Setting zoom above 19
You can set zoom up to 30 by using setCenter() not by setZoom() or zoomIn()
map.setCenter(map.getCenter(), map.getZoom()+1)
map.setCenter(map.getCenter(), 21)
map.setZoom(map.getZoom()+1)
map.setZoom(21)
map.zoomIn()
map.zoomOut()
map.getZoom()
See the map scale with high zoom settings
Zoom 30 means about 4X magnification!
Auto zoomOut
Example index