forked from organicmaps/organicmaps
[generator] PlaceProcessor: do not use PlaceProcessor for unnamed places.
This commit is contained in:
parent
a3a9409abb
commit
648865f61a
1 changed files with 3 additions and 0 deletions
|
@ -120,6 +120,9 @@ namespace generator
|
|||
{
|
||||
bool NeedProcessPlace(feature::FeatureBuilder const & fb)
|
||||
{
|
||||
if (fb.GetMultilangName().IsEmpty())
|
||||
return false;
|
||||
|
||||
auto const & islandChecker = ftypes::IsIslandChecker::Instance();
|
||||
auto const & localityChecker = ftypes::IsLocalityChecker::Instance();
|
||||
return islandChecker(fb.GetTypes()) || localityChecker.GetType(GetPlaceType(fb)) != ftypes::LocalityType::None;
|
||||
|
|
Loading…
Add table
Reference in a new issue