var map; function initialize() { if (!document.getElementById('map-canvas')) return; var myLatLng=new google.maps.LatLng(31.853167, 34.842421); var mapOptions = { zoom: 11, center: myLatLng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); var image = 'https://www.roomcenter.co.il/webimages/irooms_waze_icon.png'; var markers=new Array(); myLatLng=new google.maps.LatLng(31.853167, 34.842421); markers[35]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"שלווה במושבה" }); markers[35].infowindow =new google.maps.InfoWindow({ content: "

שלווה במושבה


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