forked from organicmaps/organicmaps
[qt] [search] Show search results on the map.
This commit is contained in:
parent
0ba54fdb5d
commit
d89a93c0c1
1 changed files with 8 additions and 0 deletions
|
@ -81,6 +81,8 @@ void SearchPanel::ClearResults()
|
|||
m_pTable->clear();
|
||||
m_pTable->setRowCount(0);
|
||||
m_results.clear();
|
||||
m_pDrawWidget->GetFramework().GetBookmarkManager().GetEditSession().ClearGroup(
|
||||
UserMark::Type::SEARCH);
|
||||
}
|
||||
|
||||
void SearchPanel::OnSearchResults(uint64_t timestamp, search::Results const & results)
|
||||
|
@ -93,6 +95,8 @@ void SearchPanel::OnSearchResults(uint64_t timestamp, search::Results const & re
|
|||
|
||||
CHECK_LESS_OR_EQUAL(m_results.size(), results.GetCount(), ());
|
||||
|
||||
auto const sizeBeforeUpdate = m_results.size();
|
||||
|
||||
for (size_t i = m_results.size(); i < results.GetCount(); ++i)
|
||||
{
|
||||
auto const & res = results[i];
|
||||
|
@ -126,6 +130,10 @@ void SearchPanel::OnSearchResults(uint64_t timestamp, search::Results const & re
|
|||
m_results.push_back(res);
|
||||
}
|
||||
|
||||
m_pDrawWidget->GetFramework().FillSearchResultsMarks(m_results.begin() + sizeBeforeUpdate,
|
||||
m_results.end(), false,
|
||||
Framework::SearchMarkPostProcessing());
|
||||
|
||||
if (results.IsEndMarker())
|
||||
{
|
||||
// stop search busy indicator
|
||||
|
|
Loading…
Add table
Reference in a new issue