Cercando un po in rete sono riusciuto a trovare un'esempio (l'ho copiato alla fine del messaggio)che va bene per il lavoretto che dovrei fare.
Avrei un'altra domanda , sarebbe possibile cambiare l'immagine associata ai marker?
Grazie ancora!!
Ciao
<script type="text/javascript">
if (GBrowserIsCompatible()) {
function createMarker(point,html) {
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
});
return marker;
}
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(45.861684,9.366875),12);
var point = new GLatLng(45.861654,9.379011);
var marker = createMarker(point,'<div style="width:240px">Some stuff to display in the First Info Window. With a
Link to my home page</div>')
map.addOverlay(marker);
var point = new GLatLng(45.851512,9.368921);
var marker = createMarker(point,'Some stuff to display in the
Second Info Window')
map.addOverlay(marker);
var point = new GLatLng(45.841689,9.3511001);
var marker = createMarker(point,'Some stuff to display in the
Third Info Window')
map.addOverlay(marker);
}
else {
alert("Sorry, the Google Maps API is not compatible with this browser");
}
</script>