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:
authorDarafei Praliaskouski <komzpa@gmail.com>2013-04-26 17:51:27 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:53:56 +0300
commit040d6c1253f475c7f9a5063dd17d5a9ccb7333fb (patch)
tree1d9317b701f090b420d173c7a442f400e6d1bfa7 /indexer/scales.hpp
parent753b0bf20309931b75776e335fdc2927d892bc56 (diff)
[map] unlocked styling for z19
Diffstat (limited to 'indexer/scales.hpp')
-rw-r--r--indexer/scales.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indexer/scales.hpp b/indexer/scales.hpp
index 6c064946b0..aa083c8a9b 100644
--- a/indexer/scales.hpp
+++ b/indexer/scales.hpp
@@ -3,9 +3,12 @@
#include "../geometry/rect2d.hpp"
#include "../geometry/point2d.hpp"
+int const UPPER_STYLE_SCALE = 19;
+
namespace scales
{
inline int GetUpperScale() { return 17; }
+ inline int GetUpperStyleScale() { return UPPER_STYLE_SCALE; }
inline int GetUpperWorldScale() { return 9; }
double GetM2PFactor(int level);