I'm using Redfin's fast marker overlay for api v3.
Taking their clickable example available here,
I add a click listener to the initialize() function like so,
function initialize() {
var latlng = new google.maps.LatLng(37.4419, -122.1419);
var myOptions = {
zoom: 4,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = window.map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
google.maps.event.addListener(map, 'click', function() {
alert('map click');
});
}
And modifying the marker template by adding return false after the addInfoWindow call,
var marker = new com.redfin.FastMarker(/*id*/i, latlng, ["<div class='marker' onclick='addInfoWindow(", i,"); return false;'> </div>"], null);
If I run this in chrome it works as expected. addInfoWindow is called, the infowindow pops up, return false is hit and nothing else happens. However in firefox and IE the return false seems to be ignored and the maps click event is fired alerting 'map click'.
In my real world application the maps click event fires an infowindow close event. So in chrome the infowindow is displayed, you click the map and it closes. In firefox/IE you click the marker, the infowindow is constructed but map click is fired and it is closed immediately.
Can anybody see the problem? Is chrome skipping a bug firefox and IE don't like.
