function visualizzamappa(){ geocoder = new google.maps.Geocoder(); var myLatlng = new google.maps.LatLng(41.871132,12.454501); var myOptions = { zoom: 11, //center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var address = " Al Passo della Cornacchia, S.S.108 bis al km 40.5, km 21 da San Giovanni in Fiore, poco prima di Lorica, vicino al lago, San Giovanni in Fiore, 87055,Cosenza"; geocoder.geocode( { 'address': address}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { map.setCenter(results[0].geometry.location); var infowindow = new google.maps.InfoWindow({ content: "Lago Arvo
Al Passo della Cornacchia, S.S.108 bis al km 40.5, km 21 da San Giovanni in Fiore, poco prima di Lorica, vicino al lago
San Giovanni in Fiore 87055
Cosenza", maxWidth:400 }); var marker = new google.maps.Marker({ map: map, title: "Lago Arvo", position: results[0].geometry.location }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,marker); }); } else { alert('Geocode was not successful for the following reason: ' + status); } }); }