我初始化谷歌地圖中顯示無股利和什麼是錯的初始化,我只看到一個灰色的方形谷歌地圖現在顯示您的顯示器沒有DIV
<div style="display:none;" id="divMap">
<div id="map" style="width:300px; height:300px;"></div>
</div>
<button onclick="showMap();">test</button>
,但是當我刪除風格= 「顯示:無;」它的工作原理
我已經創建了一個提琴手https://jsfiddle.net/ka8nywrg/2/ 你可以從這裏測試它。當您按下按鈕時,會顯示 地圖
我應該怎麼做才能防止這種情況發生?
代碼段(從貼小提琴):
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
function showMap(){
document.getElementById("divMap").style.display = 'block'
}
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
<div style="display:none;" id="divMap">
<div id="map" style="width:300px; height:300px;"></div>
</div>
<button onclick="showMap();">show map</button>
<!-- Replace the value of the key parameter with your own API key. -->
<script src="https://maps.googleapis.com/maps/api/js?callback=initMap" async defer></script>
[Google地圖顯示:無問題]的可能重複(http://stackoverflow.com/questions/4700594/google-maps-displaynone-problem) –