Esempio n. 1
0
 public KmlStyle(string id, string color, string width, string fillColor)
 {
     ID           = id;
     lineStyle    = new kmlLineStyle(color, width);
     polygonStyle = new kmlPolyStyle(fillColor);
 }
Esempio n. 2
0
 public KmlStyle(string id, string color, string width)
 {
     ID        = id;
     lineStyle = new kmlLineStyle(color, width);
 }