Get the cell value of a local raster at the tapped location and display the result in a callout.
You may want to identify a raster layer to get its exact cell value in the case the approximate value conveyed by its symbology is not sufficient. The information available for the raster cell depends on the type of raster layer being identified. For example, a 3-band satellite or aerial image might provide 8-bit RGB values, whereas a digital elevation model (DEM) would provide floating point z values. By identifying a raster cell of a DEM, you can retrieve the precise elevation of a location.
Tap or move your cursor over an area of the raster to identify a raster cell and display it's attributes in a callout.
- Create a
GeoViewTapped
event on theMapView
. - On tap:
- Call
IdentifyLayerAsync
passing in the screen point, tolerance, and maximum number of results per layer. - Await the result of the identify and then get the
GeoElement
from the layer result. - Create a callout at the calculated map point and populate the callout content with text from the
RasterCell
attributes.
- GeoView.IdentifyLayerAsync
- IdentifyLayerResult
- RasterCell
- RasterCell.Attributes
- RasterLayer
This sample uses MODIS raster imagery. Data is downloaded from ArcGIS Online automatically.
The data shown is an NDVI classification derived from MODIS imagery between 27 Apr 2020 and 4 May 2020. It comes from the NASA Worldview application. In a normalized difference vegetation index, or NDVI, values range between -1 and +1 with the positive end of the spectrum showing green vegetation.
band, cell, cell value, continuous, discrete, identify, NDVI, pixel, pixel value, raster