Anuncio: Todos los proyectos no comerciales registrados para usar Earth Engine antes del
15 de abril de 2025 deben
verificar su elegibilidad no comercial para mantener el acceso a Earth Engine.
ui.Map.setCenter
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Centra la vista del mapa en las coordenadas proporcionadas con el nivel de zoom indicado. Si no se proporciona ningún nivel de zoom, se usa el nivel de zoom más reciente en el mapa.
Devuelve este objeto ui.Map.
Uso | Muestra |
---|
Map.setCenter(lon, lat, zoom) | ui.Map |
Argumento | Tipo | Detalles |
---|
esta: ui.map | ui.Map | Es la instancia de ui.Map. |
lon | Número | Es la longitud del centro, en grados. |
lat | Número | Es la latitud del centro, en grados. |
zoom | Número, opcional | Es el nivel de zoom, que va de 0 a 24. |
Ejemplos
Editor de código (JavaScript)
// Define a ui.Map widget.
var map = ui.Map();
// Set the position and optional zoom level of the map. Latitude must be
// within [-85, 85].
map.setCenter({lon: -123.6, lat: 47.7, zoom: 9});
print(map);
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-26 (UTC)
[null,null,["Última actualización: 2025-07-26 (UTC)"],[[["\u003cp\u003eCenters the map view on the specified longitude and latitude coordinates.\u003c/p\u003e\n"],["\u003cp\u003eOptionally allows setting the zoom level, otherwise uses the current zoom level.\u003c/p\u003e\n"],["\u003cp\u003eReturns the ui.Map object, allowing for method chaining.\u003c/p\u003e\n"],["\u003cp\u003eLatitude must be within the range of -85 to 85 degrees.\u003c/p\u003e\n"]]],["The `Map.setCenter` function sets the map's center point using longitude (`lon`) and latitude (`lat`) coordinates. An optional `zoom` level, ranging from 0 to 24, can also be specified; otherwise, the map's current zoom is retained. The function requires a `ui.Map` instance, and the `lon` and `lat` are numerical degrees. Upon execution, it returns the modified `ui.Map` instance, updating the map's view.\n"],null,["# ui.Map.setCenter\n\n\u003cbr /\u003e\n\nCenters the map view at the given coordinates with the given zoom level. If no zoom level is provided, it uses the most recent zoom level on the map.\n\n\u003cbr /\u003e\n\nReturns this ui.Map.\n\n| Usage | Returns |\n|-------------------------------------|---------|\n| Map.setCenter`(lon, lat, `*zoom*`)` | ui.Map |\n\n| Argument | Type | Details |\n|----------------|------------------|------------------------------------------|\n| this: `ui.map` | ui.Map | The ui.Map instance. |\n| `lon` | Number | The longitude of the center, in degrees. |\n| `lat` | Number | The latitude of the center, in degrees. |\n| `zoom` | Number, optional | The zoom level, from 0 to 24. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// Define a ui.Map widget.\nvar map = ui.Map();\n\n// Set the position and optional zoom level of the map. Latitude must be\n// within [-85, 85].\nmap.setCenter({lon: -123.6, lat: 47.7, zoom: 9});\nprint(map);\n```"]]