private static ArcGISImageServiceProvider CreateProvider2()
 {
     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 = "157766400000,157766400000";
     return new ArcGISImageServiceProvider(info, true);
 }
Exemple #2
0
 public ArcGISImageServiceProvider(ArcGISImageServiceInfo info, bool continueOnError = false)
 {
     this.info       = info;
     ContinueOnError = continueOnError;
 }
 public ArcGISImageServiceProvider(ArcGISImageServiceInfo info, bool continueOnError = false)
 {
     this.info = info;
     ContinueOnError = continueOnError;
 }