コード例 #1
0
ファイル: OSMparser.cs プロジェクト: eglrp/OSM-City-Engine
 public Way(Way w)
 {
     this.type   = w.type;
     this.id     = w.id;
     this.isArea = w.isArea;
     this.tags   = new List <Tag>(w.tags);
     this.nodes  = new List <Node>(w.nodes);
 }
コード例 #2
0
 public Way(Way w)
 {
     this.type = w.type;
     this.id = w.id;
     this.isArea = w.isArea;
     this.tags = new List<Tag>(w.tags);
     this.nodes = new List<Node>(w.nodes);
 }