var map; function initialize() { if (!document.getElementById('map-canvas')) return; var myLatLng=new google.maps.LatLng(33.015929, 35.265505); 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(33.015929, 35.265505); markers[43]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"וילה מון בלאן" }); markers[43].infowindow =new google.maps.InfoWindow({ content: "

וילה מון בלאן

מעונה

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