fix potential bug in isZoomingAllowed
This commit is contained in:
parent
42e956b0de
commit
7960850def
1 changed files with 2 additions and 2 deletions
|
@ -1055,13 +1055,13 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
|
|||
if (baseZoom > getMaxZoom()) {
|
||||
return false;
|
||||
}
|
||||
if (baseZoom > getMaxZoom() - 1 && dz >= 1) {
|
||||
if (baseZoom > getMaxZoom() - 1 && dz > 0) {
|
||||
return false;
|
||||
}
|
||||
if (baseZoom < getMinZoom()) {
|
||||
return false;
|
||||
}
|
||||
if (baseZoom < getMinZoom() + 1 && dz <= -1) {
|
||||
if (baseZoom < getMinZoom() + 1 && dz < 0) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue