public RasterInfo(string imageURL, TiledRaster.ViewInfo v, EnvelopeN env) { this.View = v; this.url = imageURL; this.ActualPosition = (EnvelopeN)Utility.CloneObject(env); }
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)); }