var map; function initialize() { var myLatLng=new google.maps.LatLng(32.0663196, 34.7717513); 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.0663196, 34.7717513); markers[120]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"הפסאז" }); markers[120].infowindow =new google.maps.InfoWindow({ content: "

הפסאז



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