forked from organicmaps/organicmaps
[drape] check max scale on rect setting in navigator
This commit is contained in:
parent
c1ec502bf8
commit
8b04f6078f
1 changed files with 7 additions and 6 deletions
|
@ -53,14 +53,15 @@ void Navigator::SetFromRect(m2::AnyRectD const & r)
|
|||
{
|
||||
m2::RectD const & worldR = df::GetWorldRect();
|
||||
|
||||
m_Screen.SetFromRect(r);
|
||||
m_Screen = ScaleInto(m_Screen, worldR);
|
||||
ScreenBase tmp = m_Screen;
|
||||
|
||||
tmp.SetFromRect(r);
|
||||
tmp = ScaleInto(tmp, worldR);
|
||||
if (CheckMaxScale(tmp))
|
||||
m_Screen = tmp;
|
||||
|
||||
if (!m_InAction)
|
||||
{
|
||||
m_StartScreen.SetFromRect(r);
|
||||
m_StartScreen = ScaleInto(m_StartScreen, worldR);
|
||||
}
|
||||
m_StartScreen = tmp;
|
||||
}
|
||||
|
||||
void Navigator::CenterViewport(m2::PointD const & p)
|
||||
|
|
Loading…
Add table
Reference in a new issue