예제 #1
0
 public Envelope(double XMin, double YMin, double XMax, double YMax, SpatialReference SpatialReference)
 {
     this.XMin = XMin;
     this.YMin = YMin;
     this.XMax = XMax;
     this.YMax = YMax;
     this.SpatialReference = SpatialReference;
 }
예제 #2
0
 public Point(Double X, Double Y,SpatialReference SpatialReference)
 {
     this.X = X;
     this.Y = Y;
     this.SpatialReference = SpatialReference;
 }