Merge pull request #596 from Kamidu/cloud-3.1.0

fix for leaflet tile not loading issues
This commit is contained in:
Milan Perera 2017-03-02 15:23:48 +05:30 committed by GitHub
commit 360a58dce6

View File

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