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

feature.proto « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 895d19b3c42f419dfef59f130b94f64648664b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
option optimize_for = LITE_RUNTIME;

message NameProto
{
  optional string text = 1;
  optional string lang = 2;
}

message FeatureProto
{
  required int32 type = 1;
  repeated NameProto name = 2;
  repeated sint64 geometry = 3 [packed=true];
  repeated sint64 polygons = 4 [packed=true];
  optional int32 layer = 5;
}