/// <summary>
 /// Initializes a new instance of the <see cref="BasicBoundaryAddress" /> class.
 /// </summary>
 /// <param name="Center">Center.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 /// <param name="Distance">Distance.</param>
 public BasicBoundaryAddress(BoundaryPoint Center = null, PolygonGeometry Geometry = null, MatchedAddress MatchedAddress = null, Distance Distance = null)
 {
     this.Center         = Center;
     this.Geometry       = Geometry;
     this.MatchedAddress = MatchedAddress;
     this.Distance       = Distance;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BasicBoundary" /> class.
 /// </summary>
 /// <param name="Center">Center.</param>
 /// <param name="Geometry">Geometry.</param>
 /// <param name="Distance">Distance.</param>
 public BasicBoundary(BoundaryPoint Center = null, PolygonGeometry Geometry = null, Distance Distance = null)
 {
     this.Center   = Center;
     this.Geometry = Geometry;
     this.Distance = Distance;
 }