I have an application using the Google Maps javscript API and the Infobox plug-in (customizable version of the native InfoWindow).
It was working fine until I had th
Just in case you're still working on this one, you need to change your map options to turn off panning/zooming when the mouse enters the infobox. You can use something like this:
$(document).delegate("div#ib", "mouseenter", function() {
theMap.setOptions({
draggable: false,
scrollwheel: false
});
console.log("mouse enter detected");
});
$(document).delegate("div#ib", "mouseleave", function() {
theMap.setOptions({
draggable: true,
scrollwheel: true
});
console.log("mouseleave detected");
});