An open API service indexing awesome lists of open source software.

https://github.com/beginor/esri-service

Common used helper method for arcgis js api based on esri-loader
https://github.com/beginor/esri-service

Last synced: about 1 year ago
JSON representation

Common used helper method for arcgis js api based on esri-loader

Awesome Lists containing this project

README

          

# esri-service

Common used methods helper for ArcGIS JS API

## Install

```bash
npm i esri-service
```

## Sample usage

```ts
import * as arcgis from 'esri-service';

const map = await arcgis.createMap({
basemap: 'satellite',
ground: 'world-elevation'
});

const sceneView = await arcgis.createSceneView({
container: document.getElementById('map'),
map,
zoom: 7,
center: { longitude: 113.2, latitude: 23.4 },
viewingMode: 'local'
});
await sceneView.when();
```