Skip to content

This sample demonstrates how to create a sublayer in a MapImageLayer from a raster located in a registered workspace.

// Create a MapImageLayer instance with two sublayers. Both are
// rasters. The first comes from a registered database and the second
// is a map service layer.
const layer = new MapImageLayer({
url: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Elevation/GlacierBay/MapServer",
minScale: 2000000,
sublayers: [
{
id: 1,
title: "hillshade",
source: {
// Indicates the source of the sublayer is a dynamic data layer.
type: "data-layer",
// This object defines the data source of the layer.
// In this case it's a raster located in a registered workspace.
dataSource: {
type: "raster",
workspaceId: "GlacierBayID",
dataSourceName: "gb_hillshade",
},
},
},
{
id: 0,
title: "dem",
},
],
});

This app contains two raster sublayers in Glacier Bay National Park, Alaska. One is a hillshade and the other is a digital elevation model (DEM) created by the USGS in May 2016. The DEM has a resolution of five meters and was was used to create the hillshade. Move the slider to observe the satellite imagery below the hillshade. Comparing the image against the detailed hillshade allows you to observe how some glaciers in the area may have receded since the satellite image was taken.