You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you add a callback that allows for customized processing of the placemark
for a marker? I don't want to replicate everything you do, just add/change a
few items.
perhaps, just before the infoWindow opening event handler, add a callback:
if (!!parserOptions.pmParseMk) parserOptions.pmParseMk(marker, placemark);
// Infowindow-opening event handler
google.maps.event.addListener(marker, 'click', function() {
this.infoWindow.close();
marker.infoWindow.setOptions(infoWindowOptions);
this.infoWindow.open(this.map, this);
});
Original issue reported on code.google.com by [email protected] on 28 Sep 2011 at 2:28
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 28 Sep 2011 at 2:28The text was updated successfully, but these errors were encountered: