gpt4 book ai didi

google-maps - 如何获得Google map 信息窗口以调整其大小以适合放置在其中的内容?

转载 作者:行者123 更新时间:2023-12-04 06:24:54 24 4
gpt4 key购买 nike

我一直在尝试使用Google Maps API,但在使用InfoWindow时遇到了麻烦...它似乎总是太小,无法容纳放置在其中的内容,因此我的内容会溢出到InfoWindow之外并散布到 map :

如果InfoWindow中的内容是动态的还是静态的,大小的,似乎没有什么区别,内容周围的白框总是有点太小。

这是我正在测试的代码:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 100% }
</style>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDuV-Jyz8N6b1fVUVCa1EnbPzgeCs9J5_o&sensor=true"></script>
<script type="text/javascript">
var districts = [
{
name: 'Test Spot 1',
latitude: 29.680894,
longitude: -82.298584
},
{
name: 'Test Spot 2',
latitude: 28.323725,
longitude: -80.713806
}
],
addDistrictMarker = function(district, map, infoWindow) {
var position = new google.maps.LatLng(district.latitude, district.longitude),
marker = new google.maps.Marker({
position: position,
map: map,
title: district.name
});
google.maps.event.addListener(marker, 'click', function() {
infoWindow.close()

var $infoWindowContent = $(infoWindow.content),
$title = $infoWindowContent.find('#title');
$title.html(marker.title);
$infoWindowContent.show();
infoWindow.open(map, marker);
});
},
addDistrictMarkers = function(map, infoWindow) {
for (var i=0; i<districts.length; i++) {
var district = districts[i];
addDistrictMarker(district, map, infoWindow);
}
},
initialize = function() {
var mapOptions = {
center: new google.maps.LatLng(27.907058,-81.44165),
zoom: 7
},
map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions),
$infoWindowContent = $('#info-window'),
infoWindow = new google.maps.InfoWindow({
content: $infoWindowContent.get(0)
});
addDistrictMarkers(map, infoWindow);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
<div id="info-window" style="display: none;">
<h1 id="title"></h1>
<div id="bodyContent">
<p>A description of some sort...</p>
<p>
And a link:
<a href="http://foo.bar.com">http://foo.bar.com</a>
</p>
</div>
<div style="clear: both;"></div>
</div>
</body>
</html>

如果/当Google的代码不自动执行操作时,是否可以告诉Google的代码调整InfoWindow的大小?还是我的代码中出现了一个愚蠢的错误,导致Google无法正确调整InfoWindow的大小?

最佳答案

我最终得到了:

infoWindowLinea.setContent(infoWindowLinea.getContent());

在更改内容之后。这会迫使Google map 重新计算宽度和高度。

关于google-maps - 如何获得Google map 信息窗口以调整其大小以适合放置在其中的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21294388/

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