diff --git a/indexer/displacement_manager.hpp b/indexer/displacement_manager.hpp index 8384af89a4..3520c3c3c2 100644 --- a/indexer/displacement_manager.hpp +++ b/indexer/displacement_manager.hpp @@ -1,6 +1,7 @@ #pragma once #include "indexer/cell_id.hpp" +#include "indexer/classificator.hpp" #include "indexer/drawing_rules.hpp" #include "indexer/feature_data.hpp" #include "indexer/feature_visibility.hpp" @@ -20,8 +21,6 @@ namespace { double constexpr kPOIDisplacementRadiusPixels = 80.; -size_t constexpr kMaximumIgnoredZoom = 12; - // Displacement radius in pixels * half of the world in degrees / meaned graphics tile size. // So average displacement radius will be: this / tiles in row count. double constexpr kPOIDisplacementRadiusMultiplier = kPOIDisplacementRadiusPixels * 180. / 512.; @@ -125,7 +124,10 @@ public: { uint32_t scale = node.m_minScale; // Do not filter high level objects. Including metro and country names. - if (scale <= kMaximumIgnoredZoom) + static size_t const maximumIgnoredZoom = feature::GetDrawableScaleRange( + classif().GetTypeByPath({"railway", "station", "subway"})).first; + + if (scale <= maximumIgnoredZoom) { AddNodeToSorter(node,scale); acceptedNodes.Add(node);