Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@cityssm/esri-mapserver-layer-dl

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cityssm/esri-mapserver-layer-dl

A quick and easy way to download data for a GIS layer on an ESRI MapServer.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

ESRI MapServer Layer Download

npm (scoped) DeepSource codecov Coverage Testing

A quick and easy way to download data for a GIS layer on an ESRI MapServer. Handles server record limitations by making paged requests automatically.

Installation

npm install @cityssm/esri-mapserver-layer-dl

Usage

import downloadLayer from '@cityssm/esri-mapserver-layer-dl'

const response = await downloadLayer('https://gis.example.com/MapServer/0', {
  where: "streetName = 'QUEEN STREET'"
})

console.log(response)

/*
[
  {
    civicNumber: '10',
    streetName: 'QUEEN STREET',
    'geometry.x': 698005.6099999994,
    'geometry.y": 5160237.6699999999
  },
  ...
  {
    civicNumber: '12',
    streetName: 'QUEEN STREET',
    'geometry.x': 698005.6099999994,
    'geometry.y": 5160237.6699999999
  }
]
 */

Keywords

esri

FAQs

Package last updated on 25 Nov 2025

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