vote up 0 vote down star

How do I remove the 'bounds_changed' Event listener in Google Maps API v3?

google.maps.event.removeListener(_???_);
flag

44% accept rate
I think I found what you were looking for. It was the 3rd event function in API docs. – Maiku Mori Oct 9 at 14:50

2 Answers

vote up 2 vote down check

Usually you can find answers to such questions in Google Maps API documentation.

As Andrew said, addListener returns a handle which you can use later to remove the listener. That's because a single event can have many listeners and to remove them you must save a reference to each of attached listeners.

There's also a function which removes all of the listeners at the same time:

clearListeners(instance:Object, eventName:string);
//In your case:
google.maps.event.clearListeners(map, 'bounds_changed');

Here's the Google Maps API reference where you can read about it.

link|flag
So will this remove ONLY the bounds_changed event? – mp_ Oct 9 at 14:54
What's the pro/con of using this method vs Andrews method? – mp_ Oct 9 at 14:55
This removes all listeners from the bounds_changed event. While Andrew's method removes one. If you don't want to store the handle somewhere and you only have to worry about 1 listener for given event then this is the way to go. – Maiku Mori Oct 9 at 14:57
As I said events can have many listeners, but it seems like you're just using 1 in your code. If you'll understand that concept you will see the different uses for both functions. Also see the link I provided, it has nice explanations for both of those functions. – Maiku Mori Oct 9 at 14:59
vote up 0 vote down

addListener returns a handle which you can later pass to removeListener:

var listenerHandle = google.maps.event.addListener(map, 'bounds_changed', function() {

google.maps.event.removeListener(listenerHandle);
link|flag
So there is no longer static variables for the listeners? – mp_ Oct 9 at 14:42
Listeners need to be removed one by one. You can't unbind them all ala jQuery. I know because I thought the same and got confused on this point too. I eventually worked it out and the pseudo-code above roughly illustrates how I did it. – Andrew Oct 9 at 14:49
Look at my answer, I think it's a better solution. – Maiku Mori Oct 9 at 14:49
Drat! Yours is a better answer. – Andrew Oct 9 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.