google maps api zoom level scale

Available Zoom Levels
Zoom level 0 is the most zoomed out zoom level available and each integer 
step in zoom level halves the X and Y extents of the view and
doubles the linear resolution.

Google Maps was built on a 256x256 pixel tile system where zoom level 0
was a 256x256 pixel image of the whole earth. A 256x256 tile for zoom level 1
enlarges a 128x128 pixel region from zoom level 0.

The available zoom range depends on where you are looking and the kind of map
you are using:

Road maps - seem to go up to zoom level 22 everywhere
Hybrid and satellite maps - the max available zoom levels depend on location.
Here are some examples:
Remote regions of Antarctica: 13
Gobi Desert: 17
Much of the U.S. and Europe: 21
"Deep zoom" locations: 22-23 (see bkaid's link)
Note that these values are for the Google Static Maps API which seems to give
one more zoom level than the Javascript API. It appears that the
extra zoom level available for Static Maps is just an upsampled version
of the max-resolution image from the Javascript API.

Map Scale at Various Zoom Levels
Google Maps uses a Mercator projection so the scale varies substantially
with latitude. 
A formula for calculating the correct scale based on latitude is:
meters_per_pixel = 156543.03392 * Math.cos(latLng.lat() * Math.PI / 180) / Math.pow(2, zoom)

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source