Пример #1
0
 public Marker(Place location = null, FeatureColor color = FeatureColor.notSet, MarkerSize size = MarkerSize.notSet, char label = '\0')
 {
     this.Location = location;
     this.Size     = size;
     this.Color    = color;
     this.Label    = label;
 }
Пример #2
0
        public Path(int weight = 5, FeatureColor color = FeatureColor.notSet, FeatureColor fillColor = FeatureColor.notSet, bool geodesic = false)
        {
            this.Weight    = weight;
            this.Color     = color;
            this.FillColor = fillColor;
            this.Geodesic  = geodesic;

            this.Points = new List <Place>();
        }