View in QML C++ View on GitHub Sample viewer app
Display feature layers from various data sources.
Use case
Feature layers, like all layers, are visual representations of data and are used on a map or scene. In the case of feature layers, the underlying data is held in a feature table or feature service.
Feature services are useful for sharing vector GIS data with clients so that individual features can be queried, displayed, and edited. There are various online and offline methods to load feature services.
How to use the sample
Use the drop down to display different feature layers on the map. Pan and zoom the map to view the feature layers.
How it works
Set the basemap with a BasemapStyle
enum
Create a feature layer with a Geodatabase
Create a FeatureLayer
component
Add a Geodatabase
component and provide the path to the .geodatabase
Create a feature layer with a GeoPackage
Create a FeatureLayer
component
Create a GeoPackage
component and provide the path to the .gpkg
Load the GeoPackage
Set the feature layer's feature table to a GeoPackageFeatureTable
from the GeoPackage
Create a feature layer with a PortalItem
Create a FeatureLayer
component
Add a PortalItem
component and provide the itemID property
Create a feature layer with a ServiceFeatureTable
Create a FeatureLayer
component
Set the featureTable property to a ServiceFeatureTable
component with a URL
Create a feature layer with a shapefile
Create a FeatureLayer
component
Set the featureTable property to a ShapefileFeatureTable
component with the path to the .shp
Declaratively add the feature layer to the Map
as a child component or add it dynamically by appending it to the map's operationalLayers
Relevant API
FeatureLayer
Geodatabase
GeoPackage
PortalItem
ServiceFeatureTable
ShapefileFeatureTable
Offline data
Read more about how to set up the sample's offline data here .
About the data
This sample uses the Northern Los Angeles County Geology Service , Trees of Portland portal item , Los Angeles Trailheads geodatabase , Aurora, Colorado GeoPackage , and Scottish Wildlife Trust Reserves Shapefile .
The Scottish Wildlife Trust shapefile data is provided from Scottish Wildlife Trust under CC-BY licence . Data © Scottish Wildlife Trust (2022).
feature, geodatabase, geopackage, layers, service, shapefile, table
Sample CodeDisplayFeatureLayers.qml
Use dark colors for code blocks Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// [WriteFile Name=DisplayFeatureLayers, Category=Layers]
// [Legal]
// Copyright 2022 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
// http://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.
// [Legal]
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import Esri.ArcGISRuntime
import Esri.ArcGISExtras
Rectangle {
id: rootRectangle
clip : true
width : 800
height : 600
readonly property url dataPath : {
Qt.platform.os === "ios" ?
System.writableLocationUrl(System.StandardPathsDocumentsLocation) + "/ArcGIS/Runtime/Data/" :
System.writableLocationUrl(System.StandardPathsHomeLocation) + "/ArcGIS/Runtime/Data/"
}
MapView {
id: mapView
anchors.fill : parent
Component.onCompleted : {
// Set and keep the focus on MapView to enable keyboard navigation
forceActiveFocus();
}
Map {
id: map
initBasemapStyle : Enums.BasemapStyleArcGISTopographic
// This sample initializes with the service feature table feature layer visible
initialViewpoint : ViewpointCenter {
id: serviceFeatureTableViewpoint
center : Point {
x : -13176752
y : 4090404
spatialReference : SpatialReference { wkid : 102100 }
}
targetScale : 300000
}
//! [FeatureLayer Geodatabase create]
// Display a feature layer with a Geodatabase
FeatureLayer {
id: gdbFeatureLayer
visible : false
featureTable : geodatabase.geodatabaseFeatureTablesByTableName[ "Trailheads" ] ?? null
Geodatabase {
id: geodatabase
path : dataPath + "geodatabase/LA_Trails.geodatabase"
}
}
//! [FeatureLayer Geodatabase create]
// Display a GeoPackage feature layer
FeatureLayer {
id: gpkgFeatureLayer
visible : false
GeoPackage {
id: gpkg
path : dataPath + "gpkg/AuroraCO.gpkg"
// Wait for the GeoPackage to load successfully
onLoadStatusChanged : {
if (loadStatus !== Enums.LoadStatusLoaded || // the GeoPackage hasn't yet loaded
gpkg.geoPackageFeatureTables.length === 0 ) // the GeoPackage has no feature tables to use
return ;
gpkgFeatureLayer.featureTable = gpkg.geoPackageFeatureTables[ 0 ];
}
Component.onCompleted : {
load();
}
// Note you must call close() on GeoPackage to allow other processes to access it
}
}
// Display a feature layer with a portal item
FeatureLayer {
id: portalItemFeatureLayer
visible : false
item : PortalItem {
itemId : "1759fd3e8a324358a0c58d9a687a8578"
}
}
// Display a service feature table feature layer
FeatureLayer {
id: serviceFeatureTableFeatureLayer
featureTable : ServiceFeatureTable {
url : "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Energy/Geology/FeatureServer/9"
}
}
// Display a shapefile feature layer
FeatureLayer {
id: shapefileFeatureLayer
visible : false
featureTable : ShapefileFeatureTable {
path : dataPath + "shp/ScottishWildlifeTrust_ReserveBoundaries_20201102.shp"
}
}
}
}
Rectangle {
id: layerSelectRectangle
anchors {
top : parent .top
left : parent .left
margins : 5
}
width : 225
height : column.height + 10
border.color : "black"
ColumnLayout {
id: column
anchors.centerIn : parent
Text {
text : "Feature Layer Mode"
}
ComboBox {
id: featureLayerComboBox
implicitWidth : layerSelectRectangle.width - 10
model : [ "Geodatabase" , "GeoPackage" , "Portal Item" , "Service Feature Table" , "Shapefile" ]
currentIndex : 3
onCurrentTextChanged : {
map.operationalLayers.forEach(layer => {layer.visible = false ;});
switch (currentText) {
case "Geodatabase" :
gdbFeatureLayer.visible = true ;
mapView.setViewpointGeometry(gdbFeatureLayer.fullExtent);
break ;
case "GeoPackage" :
gpkgFeatureLayer.visible = true ;
mapView.setViewpointGeometry(gpkgFeatureLayer.fullExtent);
break ;
case "Portal Item" :
portalItemFeatureLayer.visible = true ;
mapView.setViewpointGeometryAndPadding(portalItemFeatureLayer.fullExtent, -1e4 );
break ;
case "Service Feature Table" :
serviceFeatureTableFeatureLayer.visible = true ;
mapView.setViewpoint(serviceFeatureTableViewpoint);
break ;
case "Shapefile" :
shapefileFeatureLayer.visible = true ;
mapView.setViewpointGeometry(shapefileFeatureLayer.fullExtent);
break ;
default :
break ;
}
// Return focus to the MapView for keyboard navigation
mapView.forceActiveFocus();
}
}
}
}
}