Fix #3061
This commit is contained in:
parent
1c822e839e
commit
998ae3d16c
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ public class MapTileLayer extends BaseMapLayer {
|
|||
|
||||
boolean useInternet = OsmandPlugin.getEnabledPlugin(OsmandRasterMapsPlugin.class) != null &&
|
||||
settings.USE_INTERNET_TO_DOWNLOAD_TILES.get() && settings.isInternetConnectionAvailable() && map.couldBeDownloadedFromInternet();
|
||||
int maxLevel = Math.min(view.getSettings().MAX_LEVEL_TO_DOWNLOAD_TILE.get(), map.getMaximumZoomSupported());
|
||||
int maxLevel = map.getMaximumZoomSupported();
|
||||
int tileSize = map.getTileSize();
|
||||
boolean oneTileShown = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue