Map.setZoom

  • The Map.setZoom() method sets the zoom level of the map.

  • It takes a number between 0 and 24 as an argument for the desired zoom level.

  • The method returns the ui.Map object.

Sets the zoom level of the map.

Returns this ui.Map.

UsageReturns
Map.setZoom(zoom)ui.Map
ArgumentTypeDetails
zoomNumberThe 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);