Learn how to use a to access and
display a feature layer in a
A map contains layers of geographic data. A map contains
a basemap layer and, optionally, one or more data layers.
This tutorial shows you how to access and display a feature layer in
a . You access
feature layers with an item ID or URL. You will
use s to access the
Trailheads, Trails, and Parks and Open Spaces feature layers and display in them in
a .
Prerequisites
The following are required for this tutorial:
An ArcGIS account to access API keys. If you don't have an account, sign up for free.
To start this tutorial, complete the Display a map tutorial or download
and unzip the solution.
Open the display_a_map project in Qt Creator.
If you downloaded the Display a map solution, set your API key.
An API Key enables access to services, web maps, and web scenes hosted in ArcGIS Online.
Go to your developer dashboard to get your API key.
For these tutorials, use your default API key. It is scoped to include all of the services demonstrated in the tutorials.
Under Projects, in the display_a_map project, double click Sources > Display_a_map.cpp to open the file.
Replace the string YOUR_API_KEY with the API key from your dashboard.
Display_a_map.cpp
Change lineChange line
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: It is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
}
// 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);
setupMap();
emit mapViewChanged();
}
Include header files
Double click on Sources > Display_a_map.cpp to open the file. Include these header files to be able to create ServiceFeatureTable and FeatureLayer instances.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Add a polygon feature layer
This tutorial will draw the map in following order:
ArcGISTopographic basemap style layer
Parks and Open Spaces (polygons)
Trails (lines)
Trailheads (points)
It is important to add feature layers in the correct order so features are displayed correctly. Polygon feature layers are typically created before lines or points, so that those features are not obscured by the polygons.
Go to the Parks and Open Spaces URL and browse the properties of the layer. You may want to explore the Name, Type, Drawing Info, and Fields properties.
Within the setupMap method, add the following code. Create a QUrl instance named polygonFeatureUrl using an ArcGIS feature server as the feature data source. Then create a ServiceFeatureTable named polygon_feature_table from that QUrl.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Create a FeatureLayer instance named polygon_feature_layer, passing in polygon_feature_table as the argument. Then append your new polygon_feature_layer to the Map instance named m_map.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Press <Ctrl+R> to run the app.
You should see a map view centered in the Santa Monica Mountains, with your feature layer showing
the Parks and Open Spaces layer in the map.
Add a line feature layer
Line features are typically displayed in a feature layer before points. Use the FeatureLayer class to reference the Trails URL and add features to the map, as described next.
Add the following code to create a QUrl instance named lineFeatureUrl using the ArcGIS feature server as the feature data source, in this case, Trails_Styled. Then create a ServiceFeatureTable named line_feature_table from that QUrl.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Create a FeatureLayer instance named line_feature_layer, passing in line_feature_table as the argument. Then append your new line_feature_layer to the Map instance named m_map.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Press <Ctrl+R> to run the app.
The map view should display the Parks and Open Spaces layer (polygons) and the Trails (lines) layer.
Add a point feature layer
Add the following code to create a QUrl instance named pointFeatureUrl using the ArcGIS feature server as the feature data source, in this case, Trailheads. Then create a ServiceFeatureTable named point_feature_table from that QUrl.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Add the following two lines of code to create a FeatureLayer, passing in point_feature_table as the argument. Then append your FeatureLayer to the Map instance named m_map.
// Copyright 2020 Esri// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.#include"Display_a_map.h"#include"ArcGISRuntimeEnvironment.h"#include"Basemap.h"#include"Map.h"#include"MapQuickView.h"#include<QUrl>#include"ServiceFeatureTable.h"#include"FeatureLayer.h"usingnamespace Esri::ArcGISRuntime;
Display_a_map::Display_a_map(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
// Note: it is not best practice to store API keys in source code. The API key is referenced here for the convenience of this tutorial.const QString api_key = QStringLiteral("YOUR_API_KEY");
ArcGISRuntimeEnvironment::setApiKey(api_key);
}
Display_a_map::~Display_a_map()
{
}
MapQuickView* Display_a_map::mapView() const{
return m_mapView;
}
void Display_a_map::setupMap()
{
const Point center(-118.80543, 34.02700, SpatialReference::wgs84());
const Viewpoint viewpoint(center, 100000.0);
m_mapView->setViewpoint(viewpoint);
const QUrl polygonFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Parks_and_Open_Space/FeatureServer/0");
ServiceFeatureTable* polygon_feature_table = new ServiceFeatureTable(polygonFeatureUrl, this);
FeatureLayer* polygon_feature_layer = new FeatureLayer(polygon_feature_table, this);
m_map->operationalLayers()->append(polygon_feature_layer);
const QUrl lineFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/ArcGIS/rest/services/Trails/FeatureServer/0");
ServiceFeatureTable* line_feature_table = new ServiceFeatureTable(lineFeatureUrl, this);
FeatureLayer* line_feature_layer = new FeatureLayer(line_feature_table, this);
m_map->operationalLayers()->append(line_feature_layer);
const QUrl pointFeatureUrl("https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads/FeatureServer/0");
ServiceFeatureTable* point_feature_table= new ServiceFeatureTable(pointFeatureUrl, this);
FeatureLayer* point_feature_layer = new FeatureLayer(point_feature_table, this);
m_map->operationalLayers()->append(point_feature_layer);
}
// 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);
setupMap();
emit mapViewChanged();
}
Press <Ctrl+R> to run the app.
The map view should display all three feature layers in the map. Double-click, drag, and scroll the mouse wheel over the map view to explore the map.