Thanks for the tips!
solution used is to add two events triggering a global boolean
"no_update";
GEvent.addListener(marker, "infowindowopen", function() { no_update =
true; });
GEvent.addListener(marker, "infowindowclose", function() { no_update =
false; });
in the moveend listener
GEvent.addListener(map, "moveend", no_update_checker);
i refer to a function which checks the status of the no_update
boolean:
function infowindow_checker() {
if (no_update) {
} else {
updateMarkers();
}
}
works nicely!
thanks again
Patrick
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---