现在我要做的是根据屏幕大小放大和缩小地图,这样你就可以基本上看到世界上的每一块土地。我不担心重复的世界,但理想情况下,我希望它基本上以非洲西海岸为中心,就像一张典型的地图。
我有如下所示的东西:
function fitMap() {
if ($) {
var height = $(window).height();
var width = $(window).width();
//Put map into full screen
$('#map').css({position: "absolute", top: "0", left: "0", right: "0", bottom:"0"});
if ((height < 586 && width < 1095) || height < 325 || (width < 700 && height > 586)) {
map.setZoom(1);
}
else if (width >= 1500 && height > 900) {
map.setZoom(3);
}
else {
map.setZoom(2);
}
}
};
//Fit the map more appropriately to screen sizes.
window.onload = fitMap;
window.onresize = fitMap;
我发现这真的很老套,如果我尝试将它放在 1920x1080 一直到小的 1024x768,它会起作用,但我在 Leaflet 中没有看到任何可以让我这样做的东西。我的一个想法是创建一个不可见的功能组,它基本上创建了从日期线到日期线的周长,并.getBounds()
像这样使用:Centering Leaflet map with getbounds and related issues
有没有人有更好的解决方案?