Elevation helpers for ArcGIS REST JS.
Install
npm install @esri/arcgis-rest-elevation
Import
@esri/arcgis-rest-elevation
is distributed as both ES Modules and Common JS modules.
import * as elevationTools from "@esri/arcgis-rest-elevation"
const elevationTools = require("@esri/arcgis-rest-elevation");
CDN
You can use @esri/arcgis-rest-elevation
as an ES Module from the esm.run CDN.
<script type="module">
import * as elevationTools from "https://esm.run/@esri/arcgis-rest-elevation@1.0.0";
</script>
You can also use @esri/arcgis-rest-elevation
from a script tag. All exports will be added to a global arcgisRest
object.
<script
src="https://unpkg.com/@esri/arcgis-rest-elevation@1.0.0/dist/bundled/elevation.umd.min.js"
integrity="sha512-DX9aPIcxp+yNw/4XKk0/8rXQjOlWwXe3eWTW4qWFqxtzgH6rLZovYj7CKNeO9lpCR27jF4L4Y4rrWKeXqH+yWQ==">
</script>