gpt4 book ai didi

javascript - 谷歌地图不出现在模态弹出窗口中

转载 作者:搜寻专家 更新时间:2023-11-01 05:00:11 24 4
gpt4 key购买 nike

我想在模式弹出窗口中显示谷歌地图,但它似乎没有出现。需要帮助。

这是 HTML -

<div id="map-canvas" style="width: 600px; height: 450px; background-color: grey;padding:0;margin:0"></div>

JS-

function initialize() {
var myloc = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom: 17,
center: myloc,
scrollwheel: false
};
var map = new google.maps.Map(document.getElementById('map-canvas'),mapOptions);
var marker = new google.maps.Marker({
position: map.getCenter(),
map: map,
animation: google.maps.Animation.BOUNCE
});
var contentString = '<div id="content" style="dir:rtl; text-align:right;">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading"><h1>title here</h1>'+
'<div id="bodyContent">'+
'<p>description here</p>'+
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString,
maxWidth: 250
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);

这是弹出预览图像 - Image Preview

最佳答案

您应该在显示的模态上使用resize 来刷新您的 map :

$('modal-id').on('shown.bs.modal', function () 
{
google.maps.event.trigger(map, "resize");
});

希望这对您有所帮助。

关于javascript - 谷歌地图不出现在模态弹出窗口中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34381483/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com