Beispiel #1
0
 public Area(OSMway way, string type)
 {
     this.nodeList = way.GetNodeList();
     this.id       = way.GetID();
     this.color    = way.GetColor();
     this.type     = type;
 }
Beispiel #2
0
 public Trail(OSMway way)
 {
     this.nodeList  = way.GetNodeList();
     this.id        = way.GetID();
     this.color     = way.GetColor();
     this.trailName = way.getName();
 }