function GMap() { var latlng=[ {"id":"657","act":"n","title":"Nymphenburg palace(Schloss Nym...","lat":"48.1582890","lng":"11.5033358","url":"https://www.allplacestovisit.com/germany/munich/nymphenburg-palace/","img":"https://www.allplacestovisit.com/upl/places/2021/nymphenburg-palace.jpg"}, {"id":"660","act":"n","title":"Theatinerkirche","lat":"48.1421523","lng":"11.5767081","url":"https://www.allplacestovisit.com/germany/munich/theatinerkirche/","img":"https://www.allplacestovisit.com/upl/places/2021/theatinerkirche.jpg"}, {"id":"661","act":"n","title":"BMW Museum","lat":"48.1767553","lng":"11.5566953","url":"https://www.allplacestovisit.com/germany/munich/bmw-museum/","img":"https://www.allplacestovisit.com/upl/places/2021/bmw-museum.jpg"}, {"id":"662","act":"n","title":"Alte Pinakothek","lat":"48.1482984","lng":"11.5699740","url":"https://www.allplacestovisit.com/germany/munich/alte-pinakothek/","img":"https://www.allplacestovisit.com/upl/places/2021/alte-pinakothek.jpg"}, {"id":"663","act":"n","title":"Munich residence","lat":"48.1417835","lng":"11.5794753","url":"https://www.allplacestovisit.com/germany/munich/munich-residence/","img":"https://www.allplacestovisit.com/upl/places/2021/neue-pinakothek.jpg"}, {"id":"664","act":"n","title":"Bavarian Opera and National Th...","lat":"48.1393765","lng":"11.5792474","url":"https://www.allplacestovisit.com/germany/munich/bavarian-opera-and-national-theater/","img":"https://www.allplacestovisit.com/upl/places/2021/bavarian-opera-and-national-theater.jpg"}, ]; var iw=null; $(function() { var map_center=new google.maps.LatLng(48.1381670,11.5524770); 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:10,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 +'
';} }); }); }