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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-04-19 13:45:42 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-04-22 14:52:11 +0300
commitfe27fac70eeade00550bc383cd32eab500079bee (patch)
tree145dbc2ecc09686e3836c0b3dfab4bbf8eaa23e0 /indexer/scales.hpp
parent0947ace7f8497cfcdaf65a2ce9de38ce61e6443a (diff)
Turned off 3d buildings and displacement for add-new-place mode
Diffstat (limited to 'indexer/scales.hpp')
-rw-r--r--indexer/scales.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/indexer/scales.hpp b/indexer/scales.hpp
index 2e0b21048a..10d9cc1c4a 100644
--- a/indexer/scales.hpp
+++ b/indexer/scales.hpp
@@ -18,14 +18,16 @@ namespace scales
constexpr int GetUpperCountryScale() { return GetUpperWorldScale() + 1; }
/// Upper scale for user comfort view (e.g. location zoom).
constexpr int GetUpperComfortScale() { return UPPER_STYLE_SCALE - 2; }
- /// Default navigation mode scale
+ /// Default navigation mode scale.
constexpr int GetNavigationScale() { return UPPER_STYLE_SCALE - 3; }
- /// Default pedestrian navigation mode scale
+ /// Default pedestrian navigation mode scale.
constexpr int GetPedestrianNavigationScale() { return UPPER_STYLE_SCALE - 2; }
- /// Default navigation 3d mode scale
+ /// Default navigation 3d mode scale.
constexpr int GetNavigation3dScale() { return UPPER_STYLE_SCALE - 2; }
- /// Default pedestrian navigation 3d mode scale
+ /// Default pedestrian navigation 3d mode scale.
constexpr int GetPedestrianNavigation3dScale() { return UPPER_STYLE_SCALE - 2; }
+ /// Default scale in adding-new-place mode.
+ constexpr int GetAddNewPlaceScale() { return 18; }
int GetMinAllowableIn3dScale();