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-11-17 00:22:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:28:13 +0300
commite8975ebcbf8e34d1bd71cce114bd035a7d51d183 (patch)
treee8d42b0b9730c2c96e3ab974ec0840579a087804 /indexer/drules_struct.proto
parent43738118867defa5d28243853c5677b789fa08d5 (diff)
Add PathTextRuleProto for text-by-line.
Regenerate proto drawing rules. Take into account correct rule color for text-by-line drawing.
Diffstat (limited to 'indexer/drules_struct.proto')
-rw-r--r--indexer/drules_struct.proto10
1 files changed, 8 insertions, 2 deletions
diff --git a/indexer/drules_struct.proto b/indexer/drules_struct.proto
index 3b3670248b..aab10134ce 100644
--- a/indexer/drules_struct.proto
+++ b/indexer/drules_struct.proto
@@ -31,7 +31,7 @@ message SymbolRuleProto
message CaptionRuleProto
{
required int32 height = 1;
- optional uint32 color = 2;
+ required uint32 color = 2;
optional uint32 stroke_color = 3;
required int32 priority = 4;
}
@@ -44,7 +44,12 @@ message CircleRuleProto
required int32 priority = 4;
}
-// PathTextRule is same as CaptionRule
+message PathTextRuleProto
+{
+ required int32 height = 1;
+ required uint32 color = 2;
+ required int32 priority = 3;
+}
// WayMarkerRule not used yet
@@ -59,6 +64,7 @@ message DrawElementProto
optional SymbolRuleProto symbol = 4;
optional CaptionRuleProto caption = 5;
optional CircleRuleProto circle = 6;
+ optional PathTextRuleProto path_text = 7;
}
message ClassifElementProto