forked from organicmaps/organicmaps
[generator] popular places section fix
This commit is contained in:
parent
9e33dddf2a
commit
412907f8f8
1 changed files with 10 additions and 9 deletions
|
@ -96,17 +96,18 @@ bool BuildPopularPlacesMwmSection(std::string const & srcFilename, std::string c
|
|||
{
|
||||
ASSERT_EQUAL(content.size(), featureId, ());
|
||||
|
||||
auto const it = featureIdToOsmId.find(featureId);
|
||||
CHECK(it != featureIdToOsmId.cend(),
|
||||
("FeatureID", featureId, "is not found in", osmToFeatureFilename));
|
||||
|
||||
PopularityIndex rank = 0;
|
||||
auto const placesIt = places.find(it->second);
|
||||
|
||||
if (placesIt != places.cend())
|
||||
auto const it = featureIdToOsmId.find(featureId);
|
||||
// Non-OSM features (coastlines, sponsored objects) are not used.
|
||||
if (it != featureIdToOsmId.cend())
|
||||
{
|
||||
popularPlaceFound = true;
|
||||
rank = placesIt->second;
|
||||
auto const placesIt = places.find(it->second);
|
||||
|
||||
if (placesIt != places.cend())
|
||||
{
|
||||
popularPlaceFound = true;
|
||||
rank = placesIt->second;
|
||||
}
|
||||
}
|
||||
|
||||
content.emplace_back(rank);
|
||||
|
|
Loading…
Add table
Reference in a new issue