示例#1
0
 public RasterInfo(string imageURL, TiledRaster.ViewInfo v, EnvelopeN env)
 {
     this.View           = v;
     this.url            = imageURL;
     this.ActualPosition = (EnvelopeN)Utility.CloneObject(env);
 }
示例#2
0
 public static bool Equivalent(TiledRaster.ViewInfo a, TiledRaster.ViewInfo b)
 {
     return(a != null && b != null && (a.Height == b.Height && a.Width == b.Width && a.CenterPoint == b.CenterPoint));
 }