-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
324 lines (294 loc) · 8.48 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
// @flow
import GeocoderArcGIS from 'geocoder-arcgis'
import lonlat from '@conveyal/lonlat'
const arcGisGeocoders = {}
type Boundary = {
rect: {
minLat: number,
minLon: number,
maxLat: number,
maxLon: number
}
}
type BaseQuery = {
clientId?: string,
clientSecret?: string,
url?: string
}
type BaseResponse = {
query: any
}
function boundaryToSearchExtent (boundary: Boundary): string {
return [
boundary.rect.minLon,
boundary.rect.maxLat,
boundary.rect.maxLon,
boundary.rect.minLat
].join(',')
}
function getGeocoder (clientId: ?string, clientSecret: ?string, endpoint: ?string) {
const geocoderKey = [
clientId,
clientSecret,
endpoint
].map(s => String(s)).join('-')
if (!arcGisGeocoders[geocoderKey]) {
arcGisGeocoders[geocoderKey] = new GeocoderArcGIS({
client_id: clientId,
client_secret: clientSecret,
endpoint
})
}
return arcGisGeocoders[geocoderKey]
}
/**
* Translate arcgis candidate json to geojson
*/
function candidateToGeojson (candidate) {
return {
geometry: {
coordinates: lonlat.toCoordinates(candidate.location),
type: 'point'
},
properties: {
confidence: candidate.attributes.Score / 100,
country: candidate.attributes.Country,
country_a: candidate.attributes.Country,
county: candidate.attributes.Subregion,
label: candidate.attributes.LongLabel,
locality: candidate.attributes.City,
name: candidate.attributes.ShortLabel,
neighbourhood: candidate.attributes.Nbrhd,
region: candidate.attributes.Region,
resultId: candidate.attributes.ResultID // this only appears in bulk geocode results
},
type: 'feature'
}
}
/**
* Search for and address using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-suggest.htm|suggest}
* service. This service does not return geojson, instead it returns the list
* of address suggestions and corresponding magicKeys
*
* @param {Object} $0
* @param {string} [$0.clientId]
* @param {string} [$0.clientSecret]
* @param {Object} [$0.boundary]
* @param {Object} [$0.focusPoint]
* @param {string} $0.text query text
* @param {string} [$0.url] optional URL to override ESRI suggest endpoint
* @return {Promise} A Promise that'll get resolved with the suggest result
*/
export function autocomplete ({
clientId,
clientSecret,
boundary,
focusPoint,
text,
url
}: BaseQuery & {
boundary?: Boundary,
focusPoint?: any,
text: string,
}): Promise<BaseResponse> {
const geocoder = getGeocoder(clientId, clientSecret, url)
const options = {}
if (focusPoint) {
options.location = lonlat.toString(focusPoint)
}
if (boundary) {
options.searchExtent = boundaryToSearchExtent(boundary)
}
// make request to arcgis
return geocoder.suggest(text, options)
.then(response => {
// translate response
return {
features: response.suggestions,
query: {
text
}
}
})
}
/**
* Bulk geocode a list of addresses using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-geocode-addresses.htm|geocodeAddresses}
* service.
*
* @param {Object} $0
* @param {Array} $0.addresses Can be array of strings or objects. Strings can be addresses or coordinates in the form `lon,lat`
* @param {string} $0.clientId
* @param {string} $0.clientSecret
* @param {Object} [$0.boundary]
* @param {Object} [$0.focusPoint]
* @param {string} [$0.url]
* @return {Promise} A Promise that'll get resolved with the bulk geocode result
*/
export function bulk ({
addresses,
clientId,
clientSecret,
boundary,
focusPoint,
url
}: BaseQuery & {
addresses: Array<any>,
boundary?: Boundary,
focusPoint?: any
}): Promise<BaseResponse> {
const geocoder = getGeocoder(clientId, clientSecret, url)
let addressesQuery = [...addresses]
const options = {}
if (boundary || focusPoint) {
const addressOptions = {}
if (boundary) {
addressOptions.searchExtent = boundaryToSearchExtent(boundary)
}
if (focusPoint) {
addressOptions.location = lonlat.toString(focusPoint)
}
addressesQuery = addresses.map(address => {
// add in searchExtent and/or location to each address query
if (typeof address === 'string') {
address = {
address
}
}
return Object.assign({}, addressOptions, address)
})
}
// make request to arcgis
return geocoder.geocodeAddresses(addressesQuery, options)
.then(response => {
// translate response
// ArcGIS returns only a single response for reverse geocoding
return {
features: response.locations.map(candidateToGeojson),
query: {
addresses: addressesQuery
}
}
})
}
/**
* Reverse geocode using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-reverse-geocode.htm|reverseGeocode}
* service.
*
* @param {Object} $0
* @param {string} [$0.clientId]
* @param {string} [$0.clientSecret]
* @param {boolean} [$0.forStorage=false] Specifies whether result is inteded to be stored
* @param {{lat: number, lon: number}} $0.point Point to reverse geocode
* @param {string} [$0.url] optional URL to override ESRI reverseGeocode endpoint
* @return {Promise} A Promise that'll get resolved with reverse geocode result
*/
export function reverse ({
clientId,
clientSecret,
forStorage = false,
point,
url
}: BaseQuery & {
forStorage?: boolean,
point: any
}): Promise<BaseResponse> {
const geocoder = getGeocoder(clientId, clientSecret, url)
const options = {}
if (forStorage) {
options.forStorage = true
}
// make request to arcgis
return geocoder.reverse(lonlat.toString(point), options)
.then(response => {
// translate response
// ArcGIS returns only a single response for reverse geocoding
return {
features: [{
geometry: {
coordinates: lonlat.toCoordinates(response.location),
type: 'point'
},
properties: {
country_a: response.address.CountryCode,
county: response.address.Subregion,
label: response.address.LongLabel,
locality: response.address.city,
name: response.address.ShortLabel,
neighbourhood: response.address.Neighborhood,
region: response.address.Region
},
type: 'feature'
}],
query: point
}
})
}
/**
* Search for an address using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-find-address-candidates.htm|findAddressCandidates}
* service.
*
* @param {Object} $0
* @param {string} [$0.clientId]
* @param {string} [$0.clientSecret]
* @param {Object} [$0.boundary]
* @param {Object} [$0.focusPoint]
* @param {boolean} [$0.forStorage=false] Specifies whether result is inteded to be stored
* @param {string} [$0.magicKey] magicKey to use in searching as obtained from `suggest` results
* @param {number} [$0.size=10]
* @param {string} $0.text The address text to query for
* @param {string} [$0.url] optional URL to override ESRI reverseGeocode endpoint
* @return {Promise} A Promise that'll get resolved with search result
*/
export function search ({
clientId,
clientSecret,
boundary,
focusPoint,
forStorage = false,
magicKey,
size = 10,
text,
url
}: BaseQuery & {
boundary?: Boundary,
focusPoint?: any,
forStorage?: boolean,
magicKey?: string,
size?: number,
text: string,
}): Promise<BaseResponse> {
const geocoder = getGeocoder(clientId, clientSecret, url)
const options = {}
options.outFields = '*'
if (boundary) {
options.searchExtent = boundaryToSearchExtent(boundary)
}
if (focusPoint) {
options.location = lonlat.toString(focusPoint)
}
if (forStorage) {
options.forStorage = true
}
if (magicKey) {
options.magicKey = magicKey
}
if (size) {
options.maxLocations = size
}
// make request to arcgis
return geocoder.findAddressCandidates(text, options)
.then(response => {
// translate response
// ArcGIS returns only a single response for reverse geocoding
return {
features: response.candidates.map(candidateToGeojson),
query: {
text
}
}
})
}