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:
authorvng <viktor.govako@gmail.com>2011-06-05 13:04:44 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:19:06 +0300
commit22c864c35ccfb2eccf662f57c823f0e80dac8fd4 (patch)
treec88813ce545f4119394b8148abc76dd76b0e7cc9 /indexer/feature_data.hpp
parent5bc39c45a852e9c4e05ed26a78579c72cabde90d (diff)
Draw tunnels transparent:
- set special layer flag when generating; - add additional id (transparent) for drawing rule;
Diffstat (limited to 'indexer/feature_data.hpp')
-rw-r--r--indexer/feature_data.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/indexer/feature_data.hpp b/indexer/feature_data.hpp
index 0cc4ad1bbe..5a23c2a6a8 100644
--- a/indexer/feature_data.hpp
+++ b/indexer/feature_data.hpp
@@ -35,6 +35,16 @@ namespace feature
};
static const int max_types_count = HEADER_TYPE_MASK + 1;
+
+ enum ELayerFlags
+ {
+ LAYER_LOW = -11,
+
+ LAYER_EMPTY = 0,
+ LAYER_TRANSPARENT_TUNNEL = 11, // draw transparent road (tunnels)
+
+ LAYER_HIGH = 12
+ };
}
/// Feature description struct.