Query features on a map using an Arcade expression.
Use case
Arcade is a portable, lightweight, and secure expression language used to create custom content in ArcGIS applications. Like other expression languages, it can perform mathematical calculations, manipulate text, and evaluate logical statements. It also supports multi-statement expressions, variables, and flow control statements. What makes Arcade particularly unique when compared to other expression and scripting languages is its inclusion of feature and geometry data types. This sample uses an arcade expression to query the number of crimes in a neighborhood in the last 60 days.
How to use the sample
Click on any neighborhood to see the number of crimes in the last 60 days in a callout.
How it works
-
Create a
PortalItem
using the URL and ID. -
Create a
Map
using the portal item. -
Set the visibility of all the layers to false, except for the layer named "RPD Beats - City_Beats_Border_1128-4500".
-
Set up a lambda or a listener for clicks on the map.
-
Identify the visible layer where it is tapped or clicked on and get the feature.
-
Create an
ArcadeExpression
using the following string:"var crimes = FeatureSetByName($map, 'Crime in the last 60 days');\n" + "return Count(Intersects($feature, crimes));"
-
Create an
ArcadeEvaluator
using the Arcade expression andArcadeProfile.FormCalculation
. -
Create a map of profile variables with the following key-value pairs. This will be passed to
ArcadeEvaluator.EvaluateAsync()
in the next step:{"$feature", identifiedFeature} {"$map", map}
-
Call
ArcadeEvaluator.EvaluateAsync()
on the Arcade evaluator object and pass the profile variables map. -
Get the result from the
ArcadeEvaluationResult.Result
property. -
Convert the result to a numerical value (integer) and populate the callout with the crime count.
Relevant API
- ArcadeEvaluationResult
- ArcadeEvaluator
- ArcadeExpression
- ArcadeProfile
- Portal
- PortalItem
About the data
This sample uses the Crimes in Police Beats Sample ArcGIS Online Web Map which contains 3 layers for police stations, city beats borders, and crimes in the last 60 days as recorded by the Rochester, NY police department.
Additional information
Visit Getting Started on the ArcGIS Developer website to learn more about Arcade expressions.
Tags
Arcade evaluator, Arcade expression, identify layers, portal, portal item, query
Sample Code
<UserControl x:Class="ArcGISRuntime.WPF.Samples.QueryFeaturesWithArcadeExpression.QueryFeaturesWithArcadeExpression"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid>
<esri:MapView x:Name="MyMapView" GeoViewTapped="MyMapView_GeoViewTapped" />
<Grid x:Name="MyLoadingGrid"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Visibility="Collapsed">
<TextBlock HorizontalAlignment="Center"
VerticalAlignment="Top"
FontSize="20"
FontWeight="Bold"
Text="Loading..." />
</Grid>
</Grid>
</UserControl>