forked from organicmaps/organicmaps-tmp
[isolines] IsVisible method added.
This commit is contained in:
parent
117993ca33
commit
5e0070fb05
2 changed files with 11 additions and 1 deletions
|
@ -84,13 +84,21 @@ bool IsolinesManager::IsEnabled() const
|
|||
return m_state != IsolinesState::Disabled;
|
||||
}
|
||||
|
||||
bool IsolinesManager::IsVisible() const
|
||||
{
|
||||
return m_currentModelView && df::GetDrawTileScale(*m_currentModelView) >= kMinIsolinesZoom;
|
||||
}
|
||||
|
||||
void IsolinesManager::UpdateViewport(ScreenBase const & screen)
|
||||
{
|
||||
if (screen.GlobalRect().GetLocalRect().IsEmptyInterior())
|
||||
return;
|
||||
|
||||
m_currentModelView.reset(screen);
|
||||
if (!IsEnabled())
|
||||
return;
|
||||
|
||||
if (df::GetZoomLevel(screen.GetScale()) < kMinIsolinesZoom)
|
||||
if (!IsVisible())
|
||||
{
|
||||
ChangeState(IsolinesState::Enabled);
|
||||
return;
|
||||
|
|
|
@ -42,6 +42,8 @@ public:
|
|||
void SetEnabled(bool enabled);
|
||||
bool IsEnabled() const;
|
||||
|
||||
bool IsVisible() const;
|
||||
|
||||
void UpdateViewport(ScreenBase const & screen);
|
||||
void Invalidate();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue