var map; function initialize() { var myLatLng=new google.maps.LatLng(32, 35); var mapOptions = { zoom: 14, center: myLatLng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); var image = 'webimages/logomap.png'; var markers=new Array(); myLatLng=new google.maps.LatLng(32.558012, 35.307241); markers[145]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"עמק השלווה" }); markers[145].infowindow =new google.maps.InfoWindow({ content: "

עמק השלווה



", maxWidth: 300, }); google.maps.event.addListener(markers[145], 'click', function() { markers[145].infowindow.open(map,markers[145]); }); window.setTimeout(function(){markers[145].infowindow.open(map,markers[145]);},1000); } google.maps.event.addDomListener(window, 'load', initialize);