const googleApiKey='AIzaSyCRZTz0-6nYAhvfQJvTheBdamxSWrwIPLM';const locationDiv=document.querySelector('.location');const locationText=locationDiv.innerText.replace('Location: ','');const mapContainer=document.querySelector('.map-container');const mapIframe=document.createElement('iframe');mapIframe.allowFullscreen=true;mapIframe.loading='lazy';mapIframe.src=`https://www.google.com/maps/embed/v1/place?key=${googleApiKey}&q=${encodeURIComponent(locationText)}`;mapContainer.appendChild(mapIframe);