Exemple #1
0
 public UpdateMapImageTask()
 {
     this.Mapservice             = null;
     this.Imagedescription       = null;
     this.Mapdesc                = null;
     this.UpdateForm             = null;
     this.OutputSpatialReference = null;
     this.GeometryService        = null;
 }
        public override ITask GetExportTask(AGSExportOptions eo, HiddenUpdateForm form)
        {
            string        arg        = base.Parent.URL + "/" + base.FullName + "/ImageServer/exportImage";
            StringBuilder arg2       = this.BuildURIRequest(eo);
            string        requestURL = arg + arg2;

            return(new UpdateRasterImageTask(base.Parent)
            {
                RequestURL = requestURL,
                UpdateForm = form,
                OutputFile = eo.OutputFile,
                OutputSpatialReference = AGSSpatialReference.SpRefFromString(eo.OutputWKT)
            });
        }
Exemple #3
0
 public virtual ITask GetExportTask(AGSExportOptions eo, HiddenUpdateForm form)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public UpdateRasterImageTask(AGSConnection parent)
 {
     this.Parent                 = parent;
     this.UpdateForm             = null;
     this.OutputSpatialReference = null;
 }