Hi
I would open a GMarker (the openInfoWindowHtml) on Google Maps with JavaScript. How can I do that?
Thank you very much
Code of the Marker:
function createMarker(point, id, name, address, type, city, image) {
var marker = new GMarker(point, customIcons[type]);
var html = "Information";
GEvent.addListener(marker, 'click', function() {
marker.openInfoWindowHtml(html);
});
return marker;