forked from organicmaps/organicmaps
Fix dropping building parts
This commit is contained in:
parent
14f162dd8a
commit
b06658693e
1 changed files with 6 additions and 3 deletions
|
@ -248,11 +248,14 @@ bool IsDrawableForIndexGeometryOnly(FeatureBase const & f, int level)
|
|||
{
|
||||
Classificator const & c = classif();
|
||||
|
||||
static uint32_t const buildingPartType = c.GetTypeByPath({"building:part"});
|
||||
|
||||
TypesHolder const types(f);
|
||||
|
||||
if (types.GetGeoType() == GEOM_AREA && !types.Has(c.GetCoastType()) &&
|
||||
!scales::IsGoodForLevel(level, f.GetLimitRect()))
|
||||
return false;
|
||||
if (types.GetGeoType() == GEOM_AREA
|
||||
&& !types.Has(c.GetCoastType()) && !types.Has(buildingPartType)
|
||||
&& !scales::IsGoodForLevel(level, f.GetLimitRect()))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue