ui.Map.onChangeCenter
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
רישום של קריאה חוזרת שמופעלת כשמרכז המפה משתנה. האירוע הזה מופעל במהלך הזזה או כשמרכז המפה משתנה באופן פרוגרמטי.
מחזירה מזהה שאפשר להעביר אל unlisten() כדי לבטל את הרישום של הקריאה החוזרת.
שימוש | החזרות |
---|
Map.onChangeCenter(callback) | מחרוזת |
ארגומנט | סוג | פרטים |
---|
זה: ui.map | ui.Map | המופע ui.Map. |
callback | פונקציה | הקריאה החוזרת (callback) שמופעלת כשמרכז המפה משתנה. הקריאה החוזרת מקבלת שני פרמטרים: אובייקט שמכיל את הקואורדינטות של המרכז החדש (עם המפתחות lon ו-lat) ואת הווידג'ט של המפה עצמו. |
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-26 (שעון UTC).
[null,null,["עדכון אחרון: 2025-07-26 (שעון UTC)."],[[["\u003cp\u003eThe \u003ccode\u003eonChangeCenter\u003c/code\u003e function registers a callback that triggers when the map's center is changed, either by panning or programmatically.\u003c/p\u003e\n"],["\u003cp\u003eThis function returns a unique ID that can be used with \u003ccode\u003eunlisten()\u003c/code\u003e to remove the registered callback.\u003c/p\u003e\n"],["\u003cp\u003eThe callback function receives the new center coordinates (longitude and latitude) and the map widget instance as arguments.\u003c/p\u003e\n"]]],["The `Map.onChangeCenter` function registers a callback triggered when the map's center changes, either through panning or programmatic updates. It accepts a callback function that receives the new center's coordinates (longitude and latitude) and the map widget itself as parameters. The function returns a unique string ID used to unregister the callback later. This callback is associated with a `ui.Map` instance.\n"],null,["# ui.Map.onChangeCenter\n\n\u003cbr /\u003e\n\nRegisters a callback that's fired when the map center changes. This is fired during pan or when the map's center is changed programmatically.\n\n\u003cbr /\u003e\n\nReturns an ID which can be passed to unlisten() to unregister the callback.\n\n| Usage | Returns |\n|--------------------------------|---------|\n| Map.onChangeCenter`(callback)` | String |\n\n| Argument | Type | Details |\n|----------------|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `ui.map` | ui.Map | The ui.Map instance. |\n| `callback` | Function | The callback to fire when the map center changes. The callback is passed two parameters: an object containing the coordinates of the new center (with keys lon and lat) and the map widget itself. |"]]