<script type="text/javascript"> //<![CDATA[ if (GBrowserIsCompatible()) { function createMarker(point,html) { var marker = new GMarker(point); GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(html); }); return marker; }
var point = new GLatLng(37.836636,15.271892); var marker = createMarker(point,'<div style="width:240px">Arthos si trova proprio qui!</div>') map.addOverlay(marker);