forked from organicmaps/organicmaps
[generator:geo_objects] Fix features filter: ignore lines
This commit is contained in:
parent
f61d9e459f
commit
19d06f4dad
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,10 @@ bool GeoObjectsFilter::IsAccepted(FeatureBuilder const & feature)
|
|||
{
|
||||
if (!feature.GetParams().IsValid())
|
||||
return false;
|
||||
|
||||
|
||||
if (feature.IsLine())
|
||||
return false;
|
||||
|
||||
return IsBuilding(feature) || HasHouse(feature) || IsPoi(feature);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue