forked from organicmaps/organicmaps
[bookmarks] Make a category visible when showing it or its bookmark or track.
This commit is contained in:
parent
9b440b695c
commit
9d7c2046f0
1 changed files with 9 additions and 0 deletions
|
@ -1116,6 +1116,9 @@ void Framework::ShowBookmark(Bookmark const * mark)
|
|||
if (scale == 0)
|
||||
scale = scales::GetUpperComfortScale();
|
||||
|
||||
auto es = GetBookmarkManager().GetEditSession();
|
||||
es.SetIsVisible(mark->GetGroupId(), true /* visible */);
|
||||
|
||||
if (m_drapeEngine != nullptr)
|
||||
{
|
||||
m_drapeEngine->SetModelViewCenter(mark->GetPivot(), scale, true /* isAnim */,
|
||||
|
@ -1138,6 +1141,9 @@ void Framework::ShowTrack(kml::TrackId trackId)
|
|||
StopLocationFollow();
|
||||
ShowRect(rect);
|
||||
|
||||
auto es = GetBookmarkManager().GetEditSession();
|
||||
es.SetIsVisible(track->GetGroupId(), true /* visible */);
|
||||
|
||||
if (track->IsInteractive())
|
||||
bm.SetDefaultTrackSelection(trackId, true /* showInfoSign */);
|
||||
}
|
||||
|
@ -1154,6 +1160,9 @@ void Framework::ShowBookmarkCategory(kml::MarkGroupId categoryId, bool animation
|
|||
StopLocationFollow();
|
||||
ShowRect(rect, -1 /* maxScale */, animation);
|
||||
|
||||
auto es = bm.GetEditSession();
|
||||
es.SetIsVisible(categoryId, true /* visible */);
|
||||
|
||||
auto const trackIds = bm.GetTrackIds(categoryId);
|
||||
for (auto trackId : trackIds)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue