A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developers.arcgis.com/arcgis-rest-js/api-reference/arcgis-rest-geocoding/bulkGeocode/ below:

bulkGeocode | ArcGIS REST JS

bulkGeocode Function bulkGeocode(requestOptions: IBulkGeocodeOptions): Promise<IBulkGeocodeResponse>

Used to geocode a batch of addresses.

Use dark colors for code blocks Copy

1
2
3
4
5
6
7
8
9
10
11
12
import { bulkGeocode } from '@esri/arcgis-rest-geocoding';
import { ApplicationCredentialsManager } from '@esri/arcgis-rest-request';

const addresses = [
  { "OBJECTID": 1, "SingleLine": "380 New York Street 92373" },
  { "OBJECTID": 2, "SingleLine": "1 World Way Los Angeles 90045" }
];

bulkGeocode({ addresses, authentication: session })
  .then((response) => {
    response.locations[0].location; // => { x: -117, y: 34, spatialReference: { wkid: 4326 } }
  });
Parameters Parameter Type Notes requestOptions IBulkGeocodeOptions

Request options to pass to the geocoder, including an array of addresses and authentication session.

Returns Promise<IBulkGeocodeResponse>

A Promise that will resolve with the data from the response. The spatial reference will be added to address locations unless rawResponse: true was passed.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4