gpt4 book ai didi

javascript - 如果在 resize 事件后调用 Google Maps API fitBounds() 行为会有所不同

转载 作者:行者123 更新时间:2023-12-01 16:37:16 27 4
gpt4 key购买 nike

我正在使用 google maps api 在具有移动和桌面 View 的网站上显示飞行路径。如果显示宽度低于 320 像素,移动 View 会隐藏包含的 div(显示:无)。如果用户将手机切换到横向模式,则 div 和 map 将变得可见。
但是,如果我以横向模式加载页面,则 map 显示另一个缩放级别,而不是以纵向模式加载页面(未显示 map )然后旋转为横向。调整大小事件被触发,我在其中调用 fitBounds()。任何的想法??

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script src="http://www.foo.bar/label.js"></script>
<script>
var bounds = new google.maps.LatLngBounds(null);
var map = null;
var myLatLng = null;

function initialize() {

var mapOptions = {
panControl: true,
scaleControl: false,
overviewMapControl: false,
zoomControl: true,
mapTypeControl: false,
streetViewControl: false,
mapTypeId: google.maps.MapTypeId.HYBRID,
center: { lat: 0.0, lng: 0.0},
zoom: 2
};

var destinations = [
{lat:25.073858, lng:55.2298444, myTitle:'Dubai'},
{lat:13.7246005, lng:100.6331108, myTitle:'Bangkok'},
{lat:8.722049, lng:98.23421, myTitle:'Khao Lak'},
{lat:1.3146631, lng:103.8454093, myTitle:'Singapore'}
];

var image = {
url: 'plane-icon-medium.png',
// This marker is 24 pixels wide by 24 pixels tall.
size: new google.maps.Size(48, 48),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the middle at 12,12.
anchor: new google.maps.Point(12, 12)
};
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
var flightPath = new google.maps.Polyline({
path: destinations,
geodesic: true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2
});

flightPath.setMap(map);

for (var i = 0; i < destinations.length; i++) {
var myTitle = destinations[i].myTitle;
myLatLng = new google.maps.LatLng(destinations[i].lat, destinations[i].lng);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image,
title: 'test',
text: myTitle,
});
var label = new Label({
map: map
});
label.bindTo('position', marker, 'position');
label.bindTo('text', marker, 'text');
bounds.extend(marker.position);
}
map.fitBounds(bounds);
if(map.getZoom() == 0) map.setZoom(1);
}

google.maps.event.addDomListener(window, 'load', initialize);
google.maps.event.addDomListener(window, "resize", function() {
google.maps.event.trigger(map, "resize");
map.fitBounds(bounds);
//alert("Resize Event fired");
//if(map.getZoom() == 0) map.setZoom(1);
});

</script>
<div id="map_canvas"></div>

谢谢,
克莱曼

最佳答案

尝试禁用 Google API 的默认 UI。我认为您的 map 没有在纵向上平移。该片段显示了禁用它的模板。希望能帮助到你。

function initialize() {
var mapOptions = {
zoom: 4,
center: new google.maps.LatLng(-33, 151),
disableDefaultUI: true
}
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
}

关于javascript - 如果在 resize 事件后调用 Google Maps API fitBounds() 行为会有所不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27027502/

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