This repository has been archived by the owner on Jul 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
82 lines (67 loc) · 1.54 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
'use strict';
const _ = require('lodash');
class Enrichment {
constructor() {}
connect() {}
disconnect() {}
querySource() {
throw new Error('Not implemented.');
}
enrich(src) {
this.connect();
return this.querySource(inputParams).then(result => {
this.disconnect();
return result;
});
}
}
class ArcGISServiceEnrichment extends Enrichment {
constructor(params) {
super();
// merge in defaults
this.params = _.merge({a
qs: {
text: '',
geometryType: 'esriGeometryPoint',
inSr: 4326,
spatialRel: 'esriSpatialRelIntersects',
relationParam: '',
objectIds: '',
where: '',
time: '',
returnCountOnly: false,
returnIdsOnly: false,
returnGeometry: false,
maxAllowableOffset: '',
outSR: 4326,
outFields: '*',
f: 'json'
},
json: true
}, params);
}
// eslint-disable-next-line
querySource() {
this.params.qs.geometry = `${inputParams.address.longitude},${inputParams.address.latitude}`;
return request(this.params).then(res => res.features);
}
}
class ParcelEnrichmentRichmond extends ArcGISServiceEnrichment {
constructor() {
super();
}
querySource(src) {
let deferred = Promise.defer();
setTimeout(() => {
deferred.resolve({
meta: {
extra_data: 'My extra data'
}
});
}, 1000);
return deferred.promise;
}
}
exports = module.exports = function () {
return new RichmondParcelEnrichment();
};