forked from MapGIS/WebClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueryTask.js
More file actions
24 lines (21 loc) · 768 Bytes
/
QueryTask.js
File metadata and controls
24 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {Zondy} from '../common/Base';
import {
getPromise,getPromiseP,formatQuery,formatEdits,extend
} from '../common';
class ArcGisQueryTask {
constructor(options) {
this.options = {
url: null,
gdbVersion: null
}
extend(this.options,options);
}
}
ArcGisQueryTask.prototype.execute = function (query, requestOptions) {}
ArcGisQueryTask.prototype.executeAttachmentQuery = function () {}
ArcGisQueryTask.prototype.executeForCount = function () {}
ArcGisQueryTask.prototype.executeForExtent = function () {}
ArcGisQueryTask.prototype.executeForIds = function () {}
ArcGisQueryTask.prototype.executeRelationshipQuery = function () {}
export {ArcGisQueryTask};
Zondy.Service.ArcGisQueryTask = ArcGisQueryTask;