function initMap() { const uluru = { lat: 49.87820098408401, lng: 16.333329649200834 }; const map = new google.maps.Map(document.getElementById("map"), { zoom: 9, center: uluru, }); const projektPosition1 = { lat: 49.87820098408401, lng: 16.333329649200834 }; const contentString1 = '<div id="content"><div id="siteNotice"></div><h4 id="firstHeading" class="firstHeading">Dálnice D35 Litomyšl - Janov</h4><div id="bodyContent"><p><strong>Dálnice D35 Litomyšl - Janov</strong><br>Litomyšl, Janov, Bohuňovice, Sedliště, Strakov<br><a href="http://opd3.opd.cz/projekt/Dalnice-D35-Litomysl---Janov">Zobrazit detailní informace o projektu</a></p></div></div>';  const infowindow1 = new google.maps.InfoWindow({ content: contentString1, });const marker1 = new google.maps.Marker({ position: projektPosition1, map, title: "Dálnice D35 Litomyšl - Janov", }); marker1.addListener("click", () => {  infowindow1.open(map, marker1); }); }