diff --git a/generator/feature_builder.cpp b/generator/feature_builder.cpp index b9e1de1b88..a6f66cf392 100644 --- a/generator/feature_builder.cpp +++ b/generator/feature_builder.cpp @@ -536,7 +536,7 @@ bool FeatureBuilder1::IsDrawableInRange(int lowScale, int highScale) const if (feature::IsDrawableForIndex(fb, lowScale++)) return true; - return IsDrawarbleByException(fb); + return RequireGeometryInIndex(fb); } return false; diff --git a/generator/feature_sorter.cpp b/generator/feature_sorter.cpp index 3aa8326f58..cec1e45307 100644 --- a/generator/feature_sorter.cpp +++ b/generator/feature_sorter.cpp @@ -58,7 +58,7 @@ namespace /// May be invisible if it's small area object with [0-9] scales. /// @todo Probably, we need to keep that objects if 9 scale (as we do in 17 scale). - if (minScale != -1 || feature::IsDrawarbleByException(ft.GetFeatureBase())) + if (minScale != -1 || feature::RequireGeometryInIndex(ft.GetFeatureBase())) { uint64_t const order = (static_cast(minScale) << 59) | (pointAsInt64 >> 5); m_vec.push_back(make_pair(order, pos)); diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index 0ed396bfe6..53db917f68 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -230,13 +230,15 @@ namespace } } -bool IsDrawarbleByException(FeatureBase const & f) +bool RequireGeometryInIndex(FeatureBase const & f) { TypesHolder const types(f); for (uint32_t t : types) + { if (HasRoutingExceptionType(t)) return true; + } return false; } diff --git a/indexer/feature_visibility.hpp b/indexer/feature_visibility.hpp index 290685e1ef..0e0811d7d0 100644 --- a/indexer/feature_visibility.hpp +++ b/indexer/feature_visibility.hpp @@ -29,7 +29,7 @@ namespace feature // Exception features which have no styles, but must be present in index for some reasons. // For example routing edges with render=no tag (Le mans tunnel). - bool IsDrawarbleByException(FeatureBase const & f); + bool RequireGeometryInIndex(FeatureBase const & f); /// For FEATURE_TYPE_AREA need to have at least one area-filling type. bool IsDrawableLike(vector const & types, EGeomType geomType);