forked from organicmaps/organicmaps
More convenient max scale rect check.
This commit is contained in:
parent
c2ca1c66be
commit
3112228048
1 changed files with 4 additions and 2 deletions
|
@ -157,8 +157,10 @@ namespace
|
|||
bool CheckMaxScale(ScreenBase const & screen)
|
||||
{
|
||||
m2::RectD const r = screen.GlobalRect();
|
||||
return ((r.SizeX() <= (MercatorBounds::maxX - MercatorBounds::minX)) ||
|
||||
(r.SizeY() <= (MercatorBounds::maxY - MercatorBounds::minY)));
|
||||
|
||||
// multiple by 2 to allow scale on zero level
|
||||
double const maxSize = 2.0 * (MercatorBounds::maxX - MercatorBounds::minX);
|
||||
return (r.SizeX() <= maxSize || r.SizeY() <= maxSize);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue