Example #1
0
 public Node(Node nd)
 {
     this.type          = nd.type;
     this.id            = nd.id;
     this.lat           = nd.lat;
     this.lon           = nd.lon;
     this.height        = nd.height;
     this.meterPosition = nd.meterPosition;
     this.tags          = new List <Tag>(nd.tags);
 }
 public Node(Node nd)
 {
     this.type = nd.type;
     this.id = nd.id;
     this.lat = nd.lat;
     this.lon = nd.lon;
     this.height = nd.height;
     this.meterPosition = nd.meterPosition;
     this.tags = new List<Tag>(nd.tags);
 }