New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-arcgis

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-arcgis

Node.js implementation for the ArcGIS REST API.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

node-arcgis

Node.js implementation for the ArcGIS REST API.

Build Status

##Install

npm install node-arcgis

##Usage

var ArcGIS = require("node-arcgis");

Geocode

To make use of the Geocode API, you can use ArcGIS.Geocode property. All of the operations that are possible on the ArcGIS REST API: World Geocoding Service are available. The function names correspond with the operation name that is provided as an ArcGIS Geocode service.

  • ArcGIS.Geocode.find
  • ArcGIS.Geocode.findAddressCandidates
  • ArcGIS.Geocode.geocodeAddresses
  • ArcGIS.Geocode.reverseGeocode
  • ArcGIS.Geocode.suggest

This module provides some defaults. These default will be overwritten if explicitly put in the requestParams object.

Defaults

var _defaultOptions = {
    f: "json",    
    forStorage: false
};

ArcGIS.Geocode.find(requestParams)

See the available params at ArcGIS Geocode Find.

ArcGIS.Geocode.findAddressCandidates(requestParams)

See the available params at ArcGIS Geocode findAddressCandidates.

ArcGIS.Geocode.geocodeAddresses(requestParams)

See the available params at ArcGIS Geocode GeocodeAddresses.

ArcGIS.Geocode.reverseGeocode(requestParams)

See the available params at ArcGIS Geocode ReverseGeocode.

ArcGIS.Geocode.suggest(requestParams)

See the available params at ArcGIS Geocode Suggest.

Keywords

ArcGIS

FAQs

Package last updated on 13 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts