Learn how to find the elevation of a point in Kaneohe, Hawaii with the Elevation service.
The Elevation service is a location service that returns elevation values for a single location or multiple locations. Elevation coverage is provided for both topography (land elevations) and bathymetry (water depths) and takes location inputs as longitude and latitude coordinates.
In this tutorial, you call the Elevation service to display the elevation of a single location on a map. You can toggle between viewing elevation values relative to mean sea level or above ground level.
Prerequisites
An ArcGIS Location Platform account.
Steps
Get the starter app
Select a type of authentication below and follow the steps to create a new application.
Set up authentication
Create developer credentials in your portal for the type of authentication you selected.
Set developer credentials
Use the API key or OAuth developer credentials so your application can access location services.
Add script references
Reference the ArcGIS REST JS request
and elevation
packages to access the Elevation service. You also reference the Calcite Design System library to create the user interface.
-
Reference the
request
andelevation
packages from ArcGIS REST JS.Use dark colors for code blocks <!-- MapLibre --> <script src="https://unpkg.com/maplibre-gl@5.1.0/dist/maplibre-gl.js"></script> <link href="https://unpkg.com/maplibre-gl@5.1.0/dist/maplibre-gl.css" rel="stylesheet" /> <!-- ArcGIS REST JS --> <script src="https://unpkg.com/@esri/arcgis-rest-request@4/dist/bundled/request.umd.js"></script> <script src="https://unpkg.com/@esri/arcgis-rest-elevation@1/dist/bundled/elevation.umd.js"></script>
-
Reference the Calcite Design System library.
Use dark colors for code blocks <!-- MapLibre --> <script src="https://unpkg.com/maplibre-gl@5.1.0/dist/maplibre-gl.js"></script> <link href="https://unpkg.com/maplibre-gl@5.1.0/dist/maplibre-gl.css" rel="stylesheet" /> <!-- Calcite components --> <script type="module" src="https://js.arcgis.com/calcite-components/2.12.1/calcite.esm.js"></script> <link rel="stylesheet" type="text/css" href="https://js.arcgis.com/calcite-components/2.12.1/calcite.css" /> <!-- ArcGIS REST JS --> <script src="https://unpkg.com/@esri/arcgis-rest-request@4/dist/bundled/request.umd.js"></script> <script src="https://unpkg.com/@esri/arcgis-rest-elevation@1/dist/bundled/elevation.umd.js"></script>
Create a toggle switch
In this step, you use Calcite to add a toggle switch. The switch will allow users to toggle between elevation values relative to mean sea level and ground level.
-
Inside
<html
, create a> div
container for the toggle control. Usecalcite-switch
to create a toggle switch.Use dark colors for code blocks <div id="control"> <label> <span>Show elevation relative to mean sea level</span> <calcite-switch id="elevationControl" checked></calcite-switch> </label> </div> <div id="map"></div>
-
Add CSS to position the toggle switch on top of the map.
Use dark colors for code blocks html, body, #map { padding: 0; margin: 0; height: 100%; width: 100%; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #323232; cursor: default; } #control { position: absolute; top: 15px; right: 15px; z-index: 2; padding: 10px; background: #fff; }
Update the map
In this step, you update the map by changing the basemap and setting the viewpoint to focus on Kaneohe, Hawaii.
-
Set the basemap to
arcgis/topographic
.Use dark colors for code blocks const basemapEnum = "arcgis/topographic";
-
To focus on Kaneohe, Hawaii, update the map's viewpoint to
-157.750, 21.410
and set the zoom level to12
.Use dark colors for code blocks const map = new maplibregl.Map({ container: "map", // the id of the div element style: `https://basemapstyles-api.arcgis.com/arcgis/rest/services/styles/v2/styles/${basemapEnum}?token=${accessToken}`, zoom: 12, // starting zoom center: [-157.750, 21.410], // starting location [longitude, latitude] });
Get elevation data
In this step, you use the Elevation service to retrieve elevation data based on the clicked point on the map and create a layer to draw a marker on the clicked point.
-
Create a variable called
elevation
to store the default elevation reference (datum), which will beMeasure mean
and add an event listener to your toggle to update theSea Level elevation
accordingly.Measure Use dark colors for code blocks let elevationMeasure = "meanSeaLevel"; document.getElementById("elevationControl").addEventListener("calciteSwitchChange", (event) => { elevationMeasure = event.target.checked ? "meanSeaLevel" : "ellipsoid"; });
-
Add a click event handler to request elevation data from the service, passing in the selected point on the map and
elevation
as parameters.Measure Use dark colors for code blocks map.on("click", async (event) => { const lng = event.lngLat.lng; const lat = event.lngLat.lat; const response = await arcgisRest.findElevationAtPoint({ lon: lng, lat: lat, relativeTo: elevationMeasure, authentication: arcgisRest.ApiKeyManager.fromKey(accessToken) }) });
-
Once the map loads, add a GeoJSON source with an empty
Feature
. Then, create a circle layer.Collection Use dark colors for code blocks map.on("load", () => { map.addSource('circle-source', { type: 'geojson', data: { type: 'FeatureCollection', features: [] } }); map.addLayer({ id: 'circle-layer', type: 'circle', source: 'circle-source', paint: { 'circle-radius': 3, 'circle-color': '#FF0000', 'circle-stroke-color': '#000000', 'circle-stroke-width': 1 } }); }); map.on("click", async (event) => { const lng = event.lngLat.lng; const lat = event.lngLat.lat; const response = await arcgisRest.findElevationAtPoint({ lon: lng, lat: lat, relativeTo: elevationMeasure, authentication: arcgisRest.ApiKeyManager.fromKey(accessToken) }) });
Display results
In this step, you extract the elevation data from the response and display it in a popup on the map.
-
Extract the
x
,y
, andz
values from the elevation request response.Use dark colors for code blocks map.on("load", () => { map.addSource('circle-source', { type: 'geojson', data: { type: 'FeatureCollection', features: [] } }); map.addLayer({ id: 'circle-layer', type: 'circle', source: 'circle-source', paint: { 'circle-radius': 3, 'circle-color': '#FF0000', 'circle-stroke-color': '#000000', 'circle-stroke-width': 1 } }); }); map.on("click", async (event) => { const lng = event.lngLat.lng; const lat = event.lngLat.lat; const response = await arcgisRest.findElevationAtPoint({ lon: lng, lat: lat, relativeTo: elevationMeasure, authentication: arcgisRest.ApiKeyManager.fromKey(accessToken) }) const { x, y, z } = response.result.point; });
-
Create a marker at the clicked point and use
Popup()
to show the elevation (z
value) in a popup format.Use dark colors for code blocks map.on("load", () => { map.addSource('circle-source', { type: 'geojson', data: { type: 'FeatureCollection', features: [] } }); map.addLayer({ id: 'circle-layer', type: 'circle', source: 'circle-source', paint: { 'circle-radius': 3, 'circle-color': '#FF0000', 'circle-stroke-color': '#000000', 'circle-stroke-width': 1 } }); }); map.on("click", async (event) => { const lng = event.lngLat.lng; const lat = event.lngLat.lat; const response = await arcgisRest.findElevationAtPoint({ lon: lng, lat: lat, relativeTo: elevationMeasure, authentication: arcgisRest.ApiKeyManager.fromKey(accessToken) }) const { x, y, z } = response.result.point; map.getSource("circle-source").setData({ type: "FeatureCollection", features: [{ type: "Feature", geometry: { type: "Point", coordinates: [lng, lat], }, }], }); new maplibregl.Popup() .setLngLat([lng, lat]) .setHTML( `<b>Elevation relative to ${elevationMeasure === "meanSeaLevel" ? "mean sea level" : "ground level"}</b><br>Latitude: ${y.toFixed(5)}<br>Longitude: ${x.toFixed(5)}<br>Elevation: ${z} m` ) .addTo(map); });
Run the app
Run the app.
You should now see a map centered over Kaneohe, Hawaii. Click on the map to access the Elevation service to return elevation information and view the results in a popup.What's next?
Learn how to use additional ArcGIS location services in these tutorials: