Duyuru:
15 Nisan 2025'ten önce Earth Engine'i kullanmak için kaydedilen tüm ticari olmayan projelerin Earth Engine erişimini sürdürmek için
ticari olmayan uygunluğu doğrulaması gerekir.
ui.Map.setCenter
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Harita görünümünü, belirtilen yakınlaştırma düzeyiyle birlikte belirtilen koordinatlarda ortalar. Yakınlaştırma düzeyi belirtilmemişse haritadaki en son yakınlaştırma düzeyi kullanılır.
Bu ui.Map'i döndürür.
Kullanım | İadeler |
---|
Map.setCenter(lon, lat, zoom) | ui.Map |
Bağımsız Değişken | Tür | Ayrıntılar |
---|
bu: ui.map | ui.Map | ui.Map örneği. |
lon | Sayı | Merkezin boylamı (derece cinsinden). |
lat | Sayı | Merkezin enlemi (derece cinsinden). |
zoom | Numara, isteğe bağlı | Yakınlaştırma düzeyi (0-24 arasında). |
Örnekler
Kod Düzenleyici (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);
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-26 UTC.
[null,null,["Son güncelleme tarihi: 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```"]]