var map; function initialize() { if (!document.getElementById('map-canvas')) return; var myLatLng=new google.maps.LatLng(32.5012736, 34.8919848); 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.5012736, 34.8919848); markers[10]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"וילה ונוס" }); markers[10].infowindow =new google.maps.InfoWindow({ content: "

וילה ונוס

קיסריה

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