这是我用来在我的网站上绘制Leaflet地图的函数:
function drawTweetMap(points) {
if (tweetMap != null)
tweetMap.remove();
var london = [51.505, -0.09];
tweetMap = L.map('tweetMap').setView(london, 5);
var cloudmadeUrl = 'http://{s}.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.jpg';
var subDomains = ['otile1','otile2','otile3','otile4'];
var cloudmadeAttrib = 'Data, imagery and map information provided by <a href="http://open.mapquest.co.uk" target="_blank">MapQuest</a>, <a href="http://www.openstreetmap.org/" target="_blank">OpenStreetMap</a> and contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/" target="_blank">CC-BY-SA</a>';
L.tileLayer(cloudmadeUrl,
{attribution: cloudmadeAttrib,
maxZoom: 18,
subdomains: subDomains})
.addTo(tweetMap);
var markers = L.markerClusterGroup();
var points_rand = L.geoJson(points, {onEachFeature: onEachFeature});
markers.addLayer(points_rand);
tweetMap.addLayer(markers);
tweetMap.fitBounds(markers.getBounds());
}
定期调用此函数:
mapWatch = setInterval(function() {
retrieveCurrentTweetPositions()},
numMinutes*60*1000);
在这个函数中:
function retrieveCurrentTweetPositions() {
var points = retrieveCurrentPositions();
var mapInput = translatePointsInMapFormat(points);
drawTweetMap(mapInput);
}
不幸的是,如果以这种方式绘制地图,结果如下:
在其他问题中,我发现可以使地图的大小无效以解决此问题,因此建议在启动时调用此函数:
function updateTweetMapPosition() {
setTimeout(function(){
tweetMap.invalidateSize(true);}
,500)
}
我这样做了,这解决了第一张地图绘制过程中出现的问题。但是,当我尝试第二次重绘地图时,结果如下:
有没有人遇到过这个问题?如何在完整加载内容的情况下重绘地图?
感谢。
修改
这是jsFiddle:http://jsfiddle.net/qzpwvqzk/
答案 0 :(得分:2)
我解决了以下问题
setTimeout(function(){map.invalidateSize(true);},500);
答案 1 :(得分:1)
使用https://leafletjs.com/reference-1.7.1.html#map-invalidatesize
tweetMap.invalidateSize()
答案 2 :(得分:0)
查看redraw()
方法。