Thanks!
Also one last thing, I tried using your function to show a box with information once you click on a marker however nothing is happening.
Example:
Triggering: "click"
Handler:
Also one last thing, I tried using your function to show a box with information once you click on a marker however nothing is happening.
Example:
Triggering: "click"
Handler:
"function() { var contentString = '<h3 style='margin:0'>Jeronimo XXXXXX</h3><br><strong>Phone: </strong>212XXXXXXX<br><br><strong>Morada:</strong><br> R Santiago XXXXXXXXX<br> Corroios, 28XX-6XX<br> Portugal'; var infowindow = new google.maps.InfoWindow({ content: contentString }); // Access this gMarker's map, set the center // to its position and zoom this.getMap().setCenter(this.getPosition()); this.getMap().setZoom(8); infowindow.open(this.getMap(), this); }"