Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
6a135e52df
1 changed files with 2 additions and 2 deletions
|
@ -1061,13 +1061,13 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
|
|||
if (baseZoom > getMaxZoom()) {
|
||||
return false;
|
||||
}
|
||||
if (baseZoom > getMaxZoom() - 1 && dz >= 1) {
|
||||
if (baseZoom > getMaxZoom() - 1 && dz > 1) {
|
||||
return false;
|
||||
}
|
||||
if (baseZoom < getMinZoom()) {
|
||||
return false;
|
||||
}
|
||||
if (baseZoom < getMinZoom() + 1 && dz <= -1) {
|
||||
if (baseZoom < getMinZoom() + 1 && dz < -1) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue