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

סוויט לופט

העבודה 50, אשדוד

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