Map.setZoom
Sets the zoom level of the map.
Returns this ui.Map.
Usage | Returns | Map.setZoom(zoom) | ui.Map |
Argument | Type | Details | zoom | Number | The zoom level, from 0 to 24, to set for the map. |
Examples
Code Editor (JavaScript)
// See the entire world.
Map.setZoom(1);
// See the smallest region possible.
Map.setZoom(24);
// The most recent zoom is the one the view will have.
Map.setZoom(12);
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["Sets the zoom level of the map, ranging from 0 (world view) to 24 (highest zoom)."],["`Map.setZoom()` takes a numerical argument representing the desired zoom level and applies it to the map."],["The most recently called `Map.setZoom()` determines the final zoom level displayed."]]],[]]