我的前端有個地圖的小圖示,點了之後會連結後端資料庫抓取精緯度,會開啟新的頁面啟動地圖顯示座標,可是跳到新的頁面時,都要按f5重整後地圖才會跳出來
要按重新整理才會跳出地圖
你的情況可能是跳頁時
JS 載入出現的錯誤
我一般都是用iframe
JS
const txt = "經,緯"
const map = document.querySelector('#map iframe');
map.src = 'https://www.google.com/maps/embed/v1/search?key=你的金鑰&q=1&zoom=14¢er='+txt;
HTML
<section id="map" class="map">
<iframe frameborder="0" style="border:0" src="" allowfullscreen></iframe>
</section>