var map; function initialize() { if (!document.getElementById('map-canvas')) return; var myLatLng=new google.maps.LatLng(32.928084, 35.641632); var mapOptions = { zoom: 11, 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.928084, 35.641632); markers[25]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"וילה סיאסטה" }); markers[25].infowindow =new google.maps.InfoWindow({ content: "

וילה סיאסטה

חד נס

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