Learn how to execute a spatial query to access features from a feature layer.
A feature layer can contain a large number of features stored in ArcGIS. To access a subset of the features, you can execute either a SQL or spatial query, or both at the same time. You can return feature attributes, geometry, or both attributes and geometry for each record. SQL and spatial queries are useful when you want to access just a subset of your hosted data.
In this tutorial, you will use the Sketch component to draw a feature and then perform a spatial query against a feature layer. The query layer is the LA County Parcels feature layer containing ±2.4 million features. The spatial query uses the sketched feature to return all of the parcels that intersect.
Prerequisites
Steps
Create a new pen
- To get started, either complete the Display a map tutorial or .
Get an access token
You need an access token with the correct privileges to access the location services used in this tutorial.
- Go to the Create an API key tutorial and create an API key with the following privilege(s):
- Privileges
- Location services > Basemaps
- Item access
- Note: If you are using your own custom data layer for this tutorial, you need to grant the API key credentials access to the layer item. Learn more in Item access privileges.
- Privileges
- In CodePen, set
esrito your access token.Config.api Key Use dark colors for code blocks var esriConfig = { apiKey: "YOUR_ACCESS_TOKEN", };
To learn about other ways to get an access token, go to Types of authentication.
Add a Sketch component
Use the Sketch component to create a graphic. The graphic will be added to the map in a graphics layer. The event handler will listen for a change from the Sketch component and update the query accordingly.
-
Add an
arcgis-sketchcomponent after thearcgis-zoomcomponent within the<arcgis-map. Set the> slotattribute totop-rightand thecreation-modeattribute toupdate.Use dark colors for code blocks <arcgis-map basemap="topo" center="-118.805, 34.020" zoom="13"> <arcgis-zoom slot="top-left"></arcgis-zoom> <arcgis-sketch creation-mode="update" slot="top-right"></arcgis-sketch> </arcgis-map> -
You should see the Sketch component at the top right of the map. Click on one of the options in the component to draw on the map.
Add modules and event listeners
-
Add a
<scripttag in the> <bodyfollowing the> <arcgis-mapcomponent. Use> $arcgis.import()to add theFeaturemodule.Layer The ArcGIS Maps SDK for JavaScript is available via CDN and npm, but this tutorial is based on CDN. The
$arcgis.importglobal function accepts a module path or array of module paths, and returns a promise that resolves with the requested modules. This function can only be used when working with the CDN; otherwise, use the standard import syntax. To learn more about the SDK's different modules, visit the References page.Use the document.querySelector() method to access the map and sketch components.
Use dark colors for code blocks <script type="module"> const FeatureLayer = await $arcgis.import("@arcgis/core/layers/FeatureLayer.js"); const viewElement = document.querySelector("arcgis-map"); const arcgisSketch = document.querySelector("arcgis-sketch"); </script> -
Wait for the map to be ready with viewOnReady.
Use dark colors for code blocks const FeatureLayer = await $arcgis.import("@arcgis/core/layers/FeatureLayer.js"); const viewElement = document.querySelector("arcgis-map"); const arcgisSketch = document.querySelector("arcgis-sketch"); await viewElement.viewOnReady(); -
Create an event listener that will update each time a graphic is drawn. You'll use this to run a new query in the next step.
Use dark colors for code blocks await viewElement.viewOnReady(); arcgisSketch.addEventListener("arcgisUpdate", (event) => { });
Create a feature layer to query
Use the Feature class to perform a query against the LA County Parcels feature layer. Since you are performing a server-side query, the feature layer does not need to be added to the map.
-
Create a
parceland set theLayer urlproperty to access the feature layer in the feature service.Feature layers are referenced by an index number at the end of the url. To determine the index number, visit the LA County Parcels feature service. In this case the index is
0.Use dark colors for code blocks // Reference query layer const parcelLayer = new FeatureLayer({ url: "https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/LA_County_Parcels/FeatureServer/0", });
Execute the query
Define a parcel and use the Feature query method to execute a query.
-
Create a
queryfunction withFeaturelayer geometryas a parameter and defineparcel. Set theQuery spatialtoRelationship intersectsand use thegeometryfrom the sketch component. Limit the attributes returned by setting theoutproperty to a list of fields. Lastly, setFields returntoGeometry trueso the feature geometries can be displayed.Use dark colors for code blocks function queryFeaturelayer(geometry) { console.log("Querying parcels..."); const parcelQuery = { spatialRelationship: "intersects", // Relationship operation to apply geometry: geometry, // The sketch feature geometry outFields: ["APN", "UseType", "TaxRateCity", "Roll_LandValue"], // Attributes to return returnGeometry: true, }; } -
Call the
querymethod on theFeatures parcelusing the parameters defined in theLayer parcelelement. To view the number of features returned, write the result length to the console. This will be updated in the next step.Query Use dark colors for code blocks function queryFeaturelayer(geometry) { console.log("Querying parcels..."); const parcelQuery = { spatialRelationship: "intersects", // Relationship operation to apply geometry: geometry, // The sketch feature geometry outFields: ["APN", "UseType", "TaxRateCity", "Roll_LandValue"], // Attributes to return returnGeometry: true, }; parcelLayer .queryFeatures(parcelQuery) .then((results) => { console.log("Feature count: " + results.features.length); }) .catch((error) => { console.log(error); }); } -
Update the sketch event handler to call the
queryfunction every time a graphic is sketched on the map. It will also listen for any reshape or move changes made to the graphic.Feature Layer Use dark colors for code blocks arcgisSketch.addEventListener("arcgisUpdate", (event) => { // Create if (event.detail.state === "start") { queryFeaturelayer(event.detail.graphics[0].geometry); } if (event.detail.state === "complete") { // Clear the graphic when a user clicks off of it or sketches new one arcgisSketch.layer.remove(event.detail.graphics[0]); } // Change if ( event.detail.toolEventInfo && (event.detail.toolEventInfo.type === "scale-stop" || event.detail.toolEventInfo.type === "reshape-stop" || event.detail.toolEventInfo.type === "move-stop") ) { queryFeaturelayer(event.detail.graphics[0].geometry); } }); -
Use the component to draw a graphic. At the bottom left, click Console to view the number of features returned from the query.
Display features
To display the parcel features returned from the query, add them to the map as polygon graphics. Before the graphics are added, define a symbol and a pop-up so that the attributes can be displayed when a feature is clicked.
-
Create a
displayfunction. Define aResults symbolandpopupvariable to style and display a pop-up for polygon graphics. The attributes referenced match theTemplate outspecified in the query earlier.Fields Use dark colors for code blocks // Show features (graphics) function displayResults(results) { // Create a blue polygon const symbol = { type: "simple-fill", color: [20, 130, 200, 0.5], outline: { color: "white", width: 0.5, }, }; const popupTemplate = { title: "Parcel {APN}", content: "Type: {UseType} <br> Land value: {Roll_LandValue} <br> Tax Rate City: {TaxRateCity}", }; } -
Assign the
symbolandpopupelements to each feature returned from the query.Template Use dark colors for code blocks const popupTemplate = { title: "Parcel {APN}", content: "Type: {UseType} <br> Land value: {Roll_LandValue} <br> Tax Rate City: {TaxRateCity}", }; // Set symbol and popup results.features.forEach((feature) => { feature.symbol = symbol; feature.popupTemplate = popupTemplate; }); -
Clear the existing graphics and pop-up, and then add the new features to the map as graphics.
Use dark colors for code blocks // Set symbol and popup results.features.forEach((feature) => { feature.symbol = symbol; feature.popupTemplate = popupTemplate; }); // Clear display viewElement.closePopup(); viewElement.graphics.removeAll(); // Add features to graphics layer viewElement.graphics.addMany(results.features); -
Update the
queryfunction to call theFeaturelayer displayfunction. Remove theResults console.log.Use dark colors for code blocks parcelLayer .queryFeatures(parcelQuery) .then((results) => { console.log("Feature count: " + results.features.length); displayResults(results); }) .catch((error) => { console.log(error); });
Run the app
In CodePen, run your code to display the map.
When you use the component to sketch a feature on the map, the spatial query runs against the feature layer and returns all parcels that intersect the sketched feature.
What's next?
Learn how to use additional SDK features and ArcGIS services in these tutorials: