Example #1
0
 /// <summary>
 /// Setter for setting geo points to a polygon.
 /// </summary>
 /// <param name="points">Array of geo points.</param>
 public void SetGeoPoints(GeoPoint[] points)
 {
     GeoPoints.Clear();
     GeoPoints.AddRange(points);
 }
Example #2
0
 public void ClearPoints()
 {
     GeoPoints?.Clear();
     GeoPoints = null;
 }