ui.Map.setCenter
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
نمای نقشه را در مختصات داده شده با سطح بزرگنمایی داده شده متمرکز می کند. اگر سطح بزرگنمایی ارائه نشده باشد، از جدیدترین سطح بزرگنمایی روی نقشه استفاده می کند.
این ui.Map را برمی گرداند.
استفاده | برمی گرداند | Map. setCenter (lon, lat, zoom ) | ui.Map |
استدلال | تایپ کنید | جزئیات | این: ui.map | ui.Map | نمونه ui.Map. |
lon | شماره | طول جغرافیایی مرکز، بر حسب درجه. |
lat | شماره | عرض جغرافیایی مرکز، بر حسب درجه. |
zoom | شماره، اختیاری | سطح زوم، از 0 تا 24. |
نمونه ها
ویرایشگر کد (جاوا اسکریپت)
// 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);
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\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```"]]