var map; function initialize() { var myLatLng=new google.maps.LatLng(31, 34); 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(31.892773, 34.811272); markers[138]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"צימר אהבתי" }); markers[138].infowindow =new google.maps.InfoWindow({ content: "

צימר אהבתי



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