var map; function initialize() { if (!document.getElementById('map-canvas')) return; var myLatLng=new google.maps.LatLng(32.7940463, 34.989571); 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.7940463, 34.989571); markers[60]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"לופט 58" }); markers[60].infowindow =new google.maps.InfoWindow({ content: "

לופט 58


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