forked from organicmaps/organicmaps
Merge pull request #11230 from cc-engineering/generator.geo_objects.addressless-filter-fix
[generator:geo_objects] Fix addressless filter
This commit is contained in:
commit
c9ffaf349a
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ void FilterAddresslessByCountryAndRepackMwm(std::string const & pathInGeoObjects
|
|||
};
|
||||
|
||||
auto const filteringCollector = [&](FeatureBuilder const & fb, uint64_t /* currPos */) {
|
||||
if (GeoObjectsFilter::HasHouse(fb))
|
||||
if (GeoObjectsFilter::HasHouse(fb) || GeoObjectsFilter::IsPoi(fb))
|
||||
{
|
||||
concurrentCollect(fb);
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue