Fix dropping building parts

This commit is contained in:
Sergey Yershov 2015-12-24 13:06:40 +03:00
parent 14f162dd8a
commit b06658693e

View file

@ -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;
}