コード例 #1
0
ファイル: Envelope.cs プロジェクト: koson/GISGeometryServer
 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
ファイル: Point.cs プロジェクト: koson/GISGeometryServer
 public Point(Double X, Double Y,SpatialReference SpatialReference)
 {
     this.X = X;
     this.Y = Y;
     this.SpatialReference = SpatialReference;
 }