-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap.proto
More file actions
32 lines (27 loc) · 846 Bytes
/
Map.proto
File metadata and controls
32 lines (27 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* Holds the protobuf for the map class.
*/
syntax = "proto3";
package referencepoint.proto;
option java_package = "com.referencepoint.proto";
option java_outer_classname = "MapProto";
import "Coordinates.proto";
import "Polygon.proto";
import "Path.proto";
import "Landmark.proto";
message Map {
/* The map's minimum coordinates. */
Coordinates minCoordinates = 1;
/* The map's maximum coordinates. */
Coordinates maxCoordinates = 2;
/* the name of the map */
string name = 3;
/* a brief description of the map */
string description = 4;
/* the set of buildings contained in the map */
map<string, Polygon> buildings = 5;
/* the set of paths contained in the map */
repeated Path paths = 6;
/* the set of Landmarks not contained in buildings */
repeated Landmark landmarks = 7;
}