Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index 439598d9ac..d6a9b9e063 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -1,5 +1,6 @@
#include "classificator.hpp"
#include "tree_structure.hpp"
+#include "scales.hpp"
#include "../coding/file_reader.hpp"
@@ -81,10 +82,13 @@ void ClassifObject::LoadPolicy::Serialize(string const & s)
drule::Key key;
key.fromString(s);
- //p->m_drawRule.push_back(key);
-
// mark as visible in rule's scale
p->m_visibility[key.m_scale] = true;
+
+ // mark objects visible on higher zooms as visible on upperScale, to get them into .mwm file
+ int const upperScale = scales::GetUpperScale();
+ if (key.m_scale > upperScale)
+ p->m_visibility[upperScale] = true;
}
void ClassifObject::LoadPolicy::Start(size_t i)