Dave,

I was able to reproduce the issue with FF 2.
I do not have Firebug, so 'console' is undefined, but I do get 'too
much recursion', and I think it is your map 'move' event handler that
loops too much.

Inside the 'move' event handler you call checkBounds(), which calls
map.setCenter(), which triggers a map 'move' event, ... etc.

Try changing
GEvent.addListener(map, "move", checkBounds);
to
GEvent.addListener(map, "moveend", checkBounds);


--
Marcelo - http://maps.forum.nu
--


On Nov 9, 6:52 am, David B <[EMAIL PROTECTED]> wrote:
> Hi, William.
>
> I tried 2.s and could quickly reproduce the problem. When you try to
> reproduce it, can you grab the image and yank it up and down quickly
> where going down means trying to drag the top of the image below the
> top of the browser window? This is how I make it happen. In the
> meantime, I'll experiment with some logging to figure out what
> recursion is blowing up. Thanks,
>
> Dave
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to