Map.setCenter

  • Centers the map view at specific coordinates with an optional zoom level.

  • Requires longitude, latitude, and an optional zoom level as arguments.

  • Returns the ui.Map object.

Centers the map view at a given coordinates with the given zoom level.

Returns the map.

Usage Returns
Map.setCenter(lon, lat, zoom ) ui.Map
Argument Type Details
lon
Number The longitude of the center, in degrees.
lat
Number The latitude of the center, in degrees.
zoom
Number, optional The zoom level, from 0 to 24.

Examples

Code Editor (JavaScript)

 // Set the position and optional zoom level of the map. Latitude must be 
 // within [-85, 85]. 
 Map 
 . 
 setCenter 
 ( 
 - 
 123.6 
 , 
  
 47.7 
 , 
  
 9 
 ); 
Create a Mobile Website
View Site in Mobile | Classic
Share by: