Learn how to execute a SQL query to return features A feature is a single record, also known as a row, that represents a real-world entity. It typically contains a geometry (point, multipoint, polyline, or polygon) and attributes but it can also contain just attributes. Learn more from a feature layer A feature layer (server-side) is a spatially-enabled table in a feature service. All features in a feature layer share the same geometry type and set of fields. Learn more based on spatial and attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more criteria.

query a feature layer

A feature layer A feature layer (server-side) is a spatially-enabled table in a feature service. All features in a feature layer share the same geometry type and set of fields. Learn more can contain a large number of features A feature is a single record, also known as a row, that represents a real-world entity. It typically contains a geometry (point, multipoint, polyline, or polygon) and attributes but it can also contain just attributes. Learn more stored in ArcGIS. You can query a layer to access a subset of its features using any combination of spatial and attribute Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. Learn more criteria. You can control whether or not each feature’s geometry A geometry is a geometric shape, such as a point, polyline, or polygon, that contains one or more coordinates and a spatial reference. Learn more is returned, as well as which attributes are included in the results. Queries allow you to return a well-defined subset of your hosted data for analysis or display in your app.

In this tutorial, you’ll write code to perform SQL queries that return a subset of features A feature is a single record, also known as a row, that represents a real-world entity. It typically contains a geometry (point, multipoint, polyline, or polygon) and attributes but it can also contain just attributes. Learn more in the LA County Parcel feature layer A feature layer (server-side) is a spatially-enabled table in a feature service. All features in a feature layer share the same geometry type and set of fields. Learn more (containing over 2.4 million features). Features that meet the query criteria are selected in the map.

Prerequisites

Before starting this tutorial:

  1. You need an ArcGIS Location Platform or ArcGIS Online account.

  2. Your system meets the system requirements.

  3. The ArcGIS Maps SDK for Qt, version 200.8.0 or later is installed.

  4. The Qt 6.8.2 software development framework or later is installed.

Develop or Download

You have two options for completing this tutorial:

  1. Option 1: Develop the code or
  2. Option 2: Download the completed solution

Option 1: Develop the code

To start the tutorial, complete the Display a map tutorial. This creates a map to display the Santa Monica Mountains in California using the topographic basemap from the ArcGIS Basemap Styles service The ArcGIS Basemap Styles service, also referred to as the Basemap Styles service, is a location service that provides basemap styles and data for the world. It returns styles as Mapbox styles and web maps, and data as vector tiles and/or map tiles. It supports all of the styles in the ArcGIS Basemap style and Open Basemap style family. An ArcGIS Location Platform or ArcGIS Online account is required to use the service. Learn more .

Open a Qt Creator project

  1. Open the project you created by completing the Display a map tutorial.
  2. Continue with the following instructions to execute a SQL query to return features from a feature layer based on spatial and attribute criteria.

Update the header file

This app will use various functions and member variables that need to be declared in the header file.

  1. In Projects, double-click Headers > Display_a_map.h to open the file.

  2. Forward declare the following classes.

    Display_a_map.h
    namespace Esri::ArcGISRuntime{
    class Map;
    class MapQuickView;
    class FeatureLayer;
    class ServiceFeatureTable;
    }
  3. Add the following code to define a function called runQuery that will be invokable from the GUI.

    Display_a_map.h
    public:
    explicit Display_a_map(QObject* parent = nullptr);
    ~Display_a_map() override;
    Q_INVOKABLE void runQuery(const QString& expression);
  4. Finally, declare the following private function and member variables. Then save the file.

    Display_a_map.h
    private:
    Esri::ArcGISRuntime::MapQuickView* mapView() const;
    void setMapView(Esri::ArcGISRuntime::MapQuickView* mapView);
    void setupViewpoint();
    void addFeatureLayer();
    Esri::ArcGISRuntime::FeatureLayer* m_featureLayer = nullptr;
    Esri::ArcGISRuntime::ServiceFeatureTable* m_featureTable = nullptr;

Include header files in the source code

To create this app you will need to include several class header files from the ArcGIS Maps SDK for Qt C++ API.

  1. In Projects, double-click Sources > Display_a_map.cpp to open the file.

  2. Add the following include statements needed for this tutorial.

    Display_a_map.cpp
    #include "Display_a_map.h"
    #include "Map.h"
    #include "MapTypes.h"
    #include "MapQuickView.h"
    #include "Point.h"
    #include "Viewpoint.h"
    #include "SpatialReference.h"
    #include <QFuture>
    #include "Envelope.h"
    #include "Feature.h"
    #include "FeatureLayer.h"
    #include "LayerListModel.h"
    #include "FeatureIterator.h"
    #include "FeatureQueryResult.h"
    #include "QueryParameters.h"
    #include "SelectionProperties.h"
    #include "ServiceFeatureTable.h"
    #include <memory>
    #include <QColor>
    #include <QList>
    #include <QUuid>
    #include <QUrl>

Add a feature layer, query features, and select results

You will add three functions to add a feature layer from ArcGIS online, execute a query of that layer, and create a features list from the query result.

  1. Staying within the Display_a_map.cpp file, add code to create the addFeatureLayer() function. This function adds the LA_County_Parcels feature layer hosted on ArcGIS Online to the map.

    Display_a_map.cpp
    void Display_a_map::setupViewpoint()
    {
    const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
    const Viewpoint viewpoint(center, 100000.0);
    m_mapView->setViewpointAsync(viewpoint);
    }
    void Display_a_map::addFeatureLayer()
    {
    // Create a ServiceFeatureTable from a QUrl.
    m_featureTable = new ServiceFeatureTable(QUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/LA_County_Parcels/FeatureServer/0"), this);
    // Create the feature layer using the feature table.
    m_featureLayer = new FeatureLayer(m_featureTable, this);
    // Add the feature layer to the map.
    m_map->operationalLayers()->append(m_featureLayer);
    }
  2. Continuing in the same file, add the runQuery(const QString& expression) function to implement the query that will execute a query of the parcels layer. This function creates a QueryParameters object that includes the currently visible map extent and a SQL expression, and then executes the query on the parcels table. When a query completes, the code iterates the returned results and adds those features to a list. That list is then used to select features in the parcels layer.

    Display_a_map.cpp
    void Display_a_map::addFeatureLayer()
    {
    // Create a ServiceFeatureTable from a QUrl.
    m_featureTable = new ServiceFeatureTable(QUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/LA_County_Parcels/FeatureServer/0"), this);
    // Create the feature layer using the feature table.
    m_featureLayer = new FeatureLayer(m_featureTable, this);
    // Add the feature layer to the map.
    m_map->operationalLayers()->append(m_featureLayer);
    }
    void Display_a_map::runQuery(const QString& expression)
    {
    if (!m_featureTable)
    return;
    // Create a query parameter object and set the WhereClause.
    QueryParameters queryParams;
    queryParams.setGeometry(m_mapView->currentViewpoint(ViewpointType::BoundingGeometry).targetGeometry().extent());
    queryParams.setWhereClause(expression);
    m_featureTable->queryFeaturesAsync(queryParams).then(this,[this](FeatureQueryResult* rawQueryResult)
    {
    if (!rawQueryResult)
    return;
    // Wrap the FeatureQueryResult in a unique_ptr to manage the memory effectively.
    auto queryResult = std::unique_ptr<FeatureQueryResult>(rawQueryResult);
    // Clear any existing selection.
    m_featureLayer->clearSelection();
    QList<Feature*> features;
    // Iterate over the result object.
    while(queryResult->iterator().hasNext())
    {
    Feature* feature = queryResult->iterator().next(this);
    // Add each feature to the list.
    features.append(feature);
    }
    // Select features.
    m_featureLayer->selectFeatures(features);
    });
    }
  3. Continuing within the Display_a_map.cpp file, locate the setMapView(MapQuickView* mapView) function. Modify the function to call the new addFeatureLayer() function and also set the color for displaying selected parcel layer features (or any other selection) in your map view. Note: by default, the selected features in the map view are displayed in cyan. Then save the file.

    Display_a_map.cpp
    // Set the view (created in QML)
    void Display_a_map::setMapView(MapQuickView* mapView)
    {
    if (!mapView || mapView == m_mapView)
    {
    return;
    }
    m_mapView = mapView;
    m_mapView->setMap(m_map);
    addFeatureLayer();
    m_mapView->setSelectionProperties(SelectionProperties(QColor(Qt::yellow)));
    setupViewpoint();
    emit mapViewChanged();
    }

Show a list of query expressions for the user to choose from

You will create a UI that allows the user to choose from a list of predefined query expressions. The expressions are presented in a ComboBox control and when the user makes a choice, the expression is passed to the runQuery method to find parcels that meet the selected criterion within the currently visible map extent.

  1. In Projects, double-click Resources > qml\qml.qrc/qml/Display_a_mapForm.qml to open the file.

  2. Add the following code to create a ComboBox control to execute a predefined query expression.

    Display_a_mapForm.qml
    // Declare the C++ instance that creates the map etc., and supply the view.
    Display_a_map {
    id: model
    mapView: view
    }
    ComboBox {
    id: queryComboBox
    anchors {
    left: parent.left
    top: parent.top
    margins: 15
    }
    property int bestWidth: implicitWidth
    width: bestWidth + leftPadding + rightPadding
    model: ["Choose a SQL where clause",
    "UseType = 'Government'",
    "UseType = 'Residential'",
    "UseType = 'Irrigated Farm'",
    "TaxRateArea = 10853",
    "TaxRateArea = 10860",
    "Roll_LandValue > 1000000",
    "Roll_LandValue < 1000000"]
    onCurrentTextChanged: {
    model.runQuery(queryComboBox.currentText)
    }
    }

Set developer credentials

For the final steps of this tutorial, click the tab below that corresponds to the authentication type (API key authentication or User authentication) that you chose when you completed the Display a map tutorial.

Be sure to also provide the same authentication (API key or user authentication Client ID/Redirect URL) that you used for the Display a map tutorial.

Set the API Key

  1. In the project Sources folder of Qt Creator, open the main.cpp file.

  2. Modify the code to set the accessToken using your API key access token (highlighted in yellow).

    main.cpp
    // The following methods grant an access token:
    // 1. User authentication: Grants a temporary access token associated with a user's ArcGIS account.
    // To generate a token, a user logs in to the app with an ArcGIS account that is part of an
    // organization in ArcGIS Online or ArcGIS Enterprise.
    // 2. API key authentication: Get a long-lived access token that gives your application access to
    // ArcGIS location services. Go to the tutorial at https://links.esri.com/create-an-api-key.
    // Copy the API Key access token.
    const QString accessToken = QString("");
    if (accessToken.isEmpty())
    {
    qWarning() << "Use of ArcGIS location services, such as the basemap styles service, requires" <<
    "you to authenticate with an ArcGIS account or set the API Key property.";
    }
    else
    {
    ArcGISRuntimeEnvironment::setApiKey(accessToken);
    }
  3. Save the main.cpp file.

Best Practice: The access token is stored directly in the code as a convenience for this tutorial. Do not store credentials directly in source code in a production environment.

Press Ctrl + R to run the app.

The app loads with the map centered on the Santa Monica Mountains in California with the parcels feature layer displayed. Choose an attribute expression, and parcels in the current extent that meet the selected criteria will display in the specified selection color.

Alternatively, you can download the tutorial solution, as follows.

Option 2: Download the solution

  1. Click the Download solution link under Solution and unzip the file to a location on your machine.

  2. Open the .pro project file in Qt Creator.

Since the downloaded solution does not contain authentication credentials, you must set up authentication to create the developer credentials and add them to the project.

For the final steps of this tutorial, click the tab below that corresponds to the authentication type (API key authentication or User authentication) that you chose when you completed the Display a map tutorial.

Be sure to also provide the same authentication (API key or user authentication Client ID/Redirect URL) that you used for the Display a map tutorial.

Set developer credentials in the solution

Set the API Key

  1. In the project Sources folder of Qt Creator, open the main.cpp file.

  2. Modify the code to set the accessToken using your API key access token (highlighted in yellow).

    main.cpp
    // The following methods grant an access token:
    // 1. User authentication: Grants a temporary access token associated with a user's ArcGIS account.
    // To generate a token, a user logs in to the app with an ArcGIS account that is part of an
    // organization in ArcGIS Online or ArcGIS Enterprise.
    // 2. API key authentication: Get a long-lived access token that gives your application access to
    // ArcGIS location services. Go to the tutorial at https://links.esri.com/create-an-api-key.
    // Copy the API Key access token.
    const QString accessToken = QString("");
    if (accessToken.isEmpty())
    {
    qWarning() << "Use of ArcGIS location services, such as the basemap styles service, requires" <<
    "you to authenticate with an ArcGIS account or set the API Key property.";
    }
    else
    {
    ArcGISRuntimeEnvironment::setApiKey(accessToken);
    }
  3. Save main.cpp file.

Best Practice: The access token is stored directly in the code as a convenience for this tutorial. Do not store credentials directly in source code in a production environment.

Run the solution

Press Ctrl + R to run the app.

The app loads with the map centered on the Santa Monica Mountains in California with the parcels feature layer displayed. Choose an attribute expression, and parcels in the current extent that meet the selected criteria will display in the specified selection color.

What’s next?

Learn how to use additional API features, ArcGIS location services, and ArcGIS tools in these tutorials: