Geoprocess getResult Data

821
0
05-16-2020 08:25 PM
RajP
by
New Contributor

gp.submitJob(params).then(function (jobInfo) {
var jobid = jobInfo.jobId;
var options = {interval: 3000, statusCallback:function (j) {console.log("Job Status: ", j.jobStatus);}};
gp.waitForJobCompletion(jobid, options).then(function () {
var reusltSet = gp.getResultData(jobid, "Viewshed_Result");
});

I am getting the resultSet to the below:

  1. cancel: ƒ (d,a)
  2. isCanceled: ƒ ()
  3. isFulfilled: ƒ ()
  4. isRejected: ƒ ()
  5. isResolved: ƒ ()
  6. then: ƒ (b,c,f)

Kindly request to know where is my output results.

0 Kudos
0 Replies