function GMap() { var latlng=[ {"id":"593","act":"n","title":"Parish Church of St. Catherine","lat":"35.8305704","lng":"14.4749048","url":"https://www.allplacestovisit.com/malta/zurrieq/parish-church-of-st.-catherine/","img":"https://www.allplacestovisit.com/upl/places/2021/parish-church-of-st.-catherine.png"}, {"id":"594","act":"n","title":"Church of the Annunciation of ...","lat":"35.8392814","lng":"14.4709441","url":"https://www.allplacestovisit.com/malta/zurrieq/church-of-the-annunciation-of-our-lady/","img":"https://www.allplacestovisit.com/upl/places/2021/church-of-the-annunciation-of-our-lady.jpg"}, {"id":"595","act":"n","title":"The Xarolla Windmill","lat":"35.8318024","lng":"14.4806654","url":"https://www.allplacestovisit.com/malta/zurrieq/the-xarolla-windmill/","img":"https://www.allplacestovisit.com/upl/places/2021/the-xarolla-windmill.jpg"}, ]; var iw=null; $(function() { var map_center=new google.maps.LatLng(35.8238317,14.4805387); var icon={url:('img/i_pin.svg'),size:new google.maps.Size(36,36),origin:new google.maps.Point(0,0),anchor:new google.maps.Point(18,36),scaledSize:new google.maps.Size(36,36)}; var icon_act={url:('img/i_pin_act.svg'),size:new google.maps.Size(44,44),origin:new google.maps.Point(0,0),anchor:new google.maps.Point(22,44),scaledSize:new google.maps.Size(44,44)}; var mapOptions={center:map_center,zoom:14,maxZoom:17,streetViewControl:false,panControl:false,mapTypeId:'roadmap',mapTypeControl:true,scaleControl:false,streetViewControl:false,rotateControl:false,fullscreenControl:false,zoomControl:true,zoomControlOptions:{style:google.maps.ZoomControlStyle.SMALL}}; var map=new google.maps.Map(document.getElementById('map'), mapOptions); var iw=new google.maps.InfoWindow({content:''}); $.each(latlng, function(i, m) { if(m.act=='y'){var marker=new google.maps.Marker({position: new google.maps.LatLng(m.lat, m.lng),bounds:true,id:'o'+m.id,letter:m.index,map:map,icon:icon_act,title:m.title});} else{var marker=new google.maps.Marker({position: new google.maps.LatLng(m.lat, m.lng),bounds:true,id:'o'+m.id,letter:m.index,map:map,icon:icon,title:m.title});} google.maps.event.addListener(map,'click',function(){iw.close();}); google.maps.event.addListener(marker,'click',function(){iw.close();iw.setContent(contentString);iw.open(map,marker);}); if(m.img==''){var contentString=''+ m.title +'';} else{var contentString=''+ m.title +'
';} }); }); }