private static ArcGISImageServiceProvider CreateProvider() { var info = new ArcGISImageServiceInfo(); info.Url = "http://imagery.arcgisonline.com/ArcGIS/rest/services/LandsatGLS/FalseColor/ImageServer/exportImage"; info.Format = "jpgpng"; info.Interpolation = InterpolationType.NearestNeighbor; info.F = "image"; info.ImageSR = "102100"; info.BBoxSR = "102100"; info.Time = "268211520000,1262217600000"; return new ArcGISImageServiceProvider(info); }
public ArcGISImageServiceProvider(ArcGISImageServiceInfo info, bool continueOnError = false) { this.info = info; ContinueOnError = continueOnError; }