More convenient max scale rect check.

This commit is contained in:
vng 2011-01-29 23:56:33 +02:00 committed by Alex Zolotarev
parent c2ca1c66be
commit 3112228048

View file

@ -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);
}
}