fix for leaflet tile not loading issues

(cherry picked from commit 6604c23257)
revert-dabc3590
kamidu 8 years ago committed by amalhub
parent 9b681d9ea0
commit d2d56651cc

@ -46,9 +46,10 @@ function loadLeafletMap() {
this.closePopup(); this.closePopup();
}); });
} }
$("#map-error").hide(); $("#map-error").hide();
$("#device-location").show(); $("#device-location").show();
setTimeout(function(){ map.invalidateSize()}, 400);
} else if (location_long && location_lat) { } else if (location_long && location_lat) {
map = L.map(container).setView([location_lat, location_long], zoomLevel); map = L.map(container).setView([location_lat, location_long], zoomLevel);
@ -61,7 +62,9 @@ function loadLeafletMap() {
m.on('mouseout', function (e) { m.on('mouseout', function (e) {
this.closePopup(); this.closePopup();
}); });
$("#map-error").hide();
$("#device-location").show();
setTimeout(function(){ map.invalidateSize()}, 400);
} else { } else {
$("#device-location").hide(); $("#device-location").hide();
$("#map-error").show(); $("#map-error").show();

Loading…
Cancel
Save