diff --git a/generator/affiliation.cpp b/generator/affiliation.cpp index 4cf0ae66df..e7f07f17c8 100644 --- a/generator/affiliation.cpp +++ b/generator/affiliation.cpp @@ -28,7 +28,7 @@ std::vector CountriesFilesAffiliation::GetAffiliations(FeatureBuild { std::vector countries; std::vector> countriesContainer; - m_countryPolygonsTree.ForEachPolygonInRect(fb.GetLimitRect(), [&](auto const & countryPolygons) { + m_countryPolygonsTree.ForEachCountryInRect(fb.GetLimitRect(), [&](auto const & countryPolygons) { countriesContainer.emplace_back(countryPolygons); }); @@ -59,7 +59,7 @@ CountriesFilesAffiliation::GetAffiliations(m2::PointD const & point) const { std::vector countries; std::vector> countriesContainer; - m_countryPolygonsTree.ForEachPolygonInRect(m2::RectD(point, point), [&](auto const & countryPolygons) { + m_countryPolygonsTree.ForEachCountryInRect(m2::RectD(point, point), [&](auto const & countryPolygons) { countriesContainer.emplace_back(countryPolygons); }); @@ -188,7 +188,7 @@ CountriesFilesIndexAffiliation::BuildIndex(const std::vector & net) { pool.SubmitWork([&, rect]() { std::vector> countries; - m_countryPolygonsTree.ForEachPolygonInRect(rect, [&](auto const & country) { + m_countryPolygonsTree.ForEachCountryInRect(rect, [&](auto const & country) { countries.emplace_back(country); }); if (m_haveBordersForWholeWorld && countries.size() == 1) diff --git a/generator/borders.hpp b/generator/borders.hpp index b697e1399c..8f563cb301 100644 --- a/generator/borders.hpp +++ b/generator/borders.hpp @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -107,9 +108,13 @@ public: size_t GetSize() const { return m_countryPolygonsMap.size(); } template - void ForEachPolygonInRect(m2::RectD const & rect, ToDo && toDo) const + void ForEachCountryInRect(m2::RectD const & rect, ToDo && toDo) const { - m_regionsTree.ForEachInRect(rect, std::forward(toDo)); + std::unordered_set uniq; + m_regionsTree.ForEachInRect(rect, [&](auto const & countryPolygons) { + if (uniq.emplace(&countryPolygons.get()).second) + toDo(countryPolygons); + }); } bool HasRegionByName(std::string const & name) const