Open GoogleCodeExporter opened 9 years ago
BTW, I've joined the mailing list but seems as dead.
Original comment by tomasl...@gmail.com
on 19 Nov 2013 at 10:10
Thanks for the report, I'll investigate.
Original comment by brett.mc...@gmail.com
on 21 Nov 2013 at 7:58
Can you post a code sample to verify that your suggested solution will resolve
the issue?
Original comment by brett.mc...@gmail.com
on 26 Nov 2013 at 6:19
I confirm lines 731-733 should be changed to:
google.maps.event.addDomListener(this.markerContent_, 'click', function(e) {
google.maps.event.trigger(that, 'click', e);
});
so that clicks on RichMarker can be stopped from being passed on like here:
google.maps.event.addListener(richmarker1, 'click', function(e) {
infowindow.setContent('RichMarker clicked');
infowindow.open(map, this);
e.stopPropagation();
});
Original comment by thismar...@gmail.com
on 7 Aug 2014 at 12:21
Original issue reported on code.google.com by
tomasl...@gmail.com
on 19 Nov 2013 at 10:09