ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
Map.onChangeBounds
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি কলব্যাক নিবন্ধন করে যা ম্যাপের সীমানা পরিবর্তনের সময় বহিস্কার করা হয়। এটি প্যান, জুম এবং যখন মানচিত্রের সীমানাগুলি প্রোগ্রামগতভাবে পরিবর্তন করা হয় তখন এটি চালানো হয়।
একটি আইডি ফেরত দেয় যা কলব্যাক নিবন্ধনমুক্ত করতে unlisten() এ পাস করা যেতে পারে।
ব্যবহার | রিটার্নস | Map.onChangeBounds(callback) | স্ট্রিং |
যুক্তি | টাইপ | বিস্তারিত | callback | ফাংশন | মানচিত্র সীমা পরিবর্তিত হলে কলব্যাক ফায়ার। কলব্যাকটি দুটি পরামিতি অতিক্রম করেছে: একটি বস্তু যাতে নতুন মানচিত্র কেন্দ্রের স্থানাঙ্ক রয়েছে (লন, ল্যাট এবং জুম কী সহ) এবং মানচিত্র উইজেট নিজেই। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eRegisters a callback function that is triggered whenever the map's boundaries are modified, including panning, zooming, or programmatic changes.\u003c/p\u003e\n"],["\u003cp\u003eProvides an ID that can be used with the \u003ccode\u003eunlisten()\u003c/code\u003e function to remove the registered callback.\u003c/p\u003e\n"],["\u003cp\u003eThe callback function receives the new map center coordinates (longitude, latitude, and zoom level) and the map widget as arguments.\u003c/p\u003e\n"]]],["The core content details how to register a callback function that triggers when map bounds change due to panning, zooming, or programmatic adjustments. `Map.onChangeBounds(callback)` registers this callback, which receives the new map center's coordinates (lon, lat, zoom) and the map widget itself. This function returns a unique ID, enabling later unregistration of the callback via `unlisten()`.\n"],null,["# Map.onChangeBounds\n\n\u003cbr /\u003e\n\nRegisters a callback that's fired when the map bounds change. This is fired during pan, zoom, and when the map's bounds are 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.onChangeBounds(callback)` | String |\n\n| Argument | Type | Details |\n|------------|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `callback` | Function | The callback to fire when the map bounds change. The callback is passed two parameters: an object containing the coordinates of the new map center (with keys lon, lat, and zoom) and the map widget itself. |"]]