View in QML C++ View on GitHub Sample viewer app
Find portal items by using a keyword, and limit the results to items of a certain type - in this case, web maps.
Use case
Portals can contain many portal items and at times you may wish to query the portal to find what you're looking for. In this example, we search for webmap portal items using a text search.
How to use the sample
Enter search terms into the search bar. Once the search is complete, a list is populated with the resultant webmaps. Tap on a webmap to set it to the map view. Scrolling to the bottom of the webmap recycler view will get more results.
How it works
A Portal
is created with no credential set, when the app starts, the portal is loaded.
A search bar allows the user to enter a keyword (a tag) to search for * e.g. "usa".
The search term is passed as the searchString
for a PortalQueryParametersForItems
which also has the itemType
set to Enums.PortalItemTypeWebMap
. NOTE if multiple item types are required these can be set via the types
property. Since webmaps authored prior to July 2nd, 2014 are not supported, a date filter is also applied.
The query parameters are passed to the portal's findItems
method.
Once the findItems
task is complete, a PortalQueryResultSetForItems
is obtained by calling findItemsResult
on the portal.
The PortalItemListModel
from the items result is set on a ListView
to display the set of web maps. If many web maps match the search criteria, the results will contain only the 1st set (to allow "paging" through the results in batches).
If there are additional results, a subsequent query can be issued by clicking the "More Results" button. This passes the itemResult's nextQueryParameters
object to a new findItems
operation.
When the user double-clicks on a web map in the list, the PortalItem
is loaded and set as a Map
on the MapView
If the item is secured, the user may be prompted to login via the AuthenticationView
Relevant API
Portal
PortalItem
PortalItemListModel
PortalQueryParametersForItems
PortalQueryResultSetForItems
keyword, query, search, webmap
Sample CodeSearchForWebmap.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
// [WriteFile Name=SearchForWebmap, Category=CloudAndPortal]
// [Legal]
// Copyright 2016 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.ArcGISRuntime.Toolkit
Rectangle {
id: rootRectangle
clip : true
width : 800
height : 600
property var portalItem
function search ( ) {
mapView.visible = false ;
mapView.map = null ;
//! [Portal findItems webmaps part 2]
portal.findItems(webmapQuery);
//! [Portal findItems webmaps part 2]
}
function searchNext ( ) {
//! [Portal find with nextQueryParameters]
const nextQuery = portal.findItemsResult.nextQueryParameters;
// check whether the startIndex of the new query is valid
if (nextQuery.startIndex !== -1 )
portal.findItems(nextQuery);
//! [Portal find with nextQueryParameters]
}
function loadSelectedWebmap ( selectedWebmap ) {
portalItem = selectedWebmap;
portalItem.loadStatusChanged.connect(createMap);
portalItem.loadErrorChanged.connect(()=> {
webMapMsg.text = portalItem.loadError.message;
webMapMsg.visible = true ;
});
portalItem.load();
}
function createMap ( ) {
if (portalItem.loadStatus !== Enums.LoadStatusLoaded)
return ;
mapView.map = ArcGISRuntimeEnvironment.createObject( "Map" , { "item" : portalItem});
mapView.map.loadStatusChanged.connect(assignWebmap);
mapView.map.loadErrorChanged.connect(()=> {
webMapMsg.text = mapView.map.loadError.message;
webMapMsg.visible = true ;
});
mapView.map.load();
}
function assignWebmap ( ) {
if (mapView.map.loadStatus !== Enums.LoadStatusLoaded)
return ;
webmapsList.visible = false ;
mapView.visible = true ;
}
//! [Portal findItems webmaps part 1]
// webmaps authored prior to July 2nd, 2014 are not supported - so search only from that date to the current time
property string fromDate : "000000" + new Date ( '2014-07-02T00:00:00Z' ).getTime()
property string toDate : "000000" + new Date ().getTime()
PortalQueryParametersForItems {
id: webmapQuery
types : [ Enums.PortalItemTypeWebMap ]
searchString : 'tags:\"' + keyWordField.text + '\" AND + uploaded:[' + fromDate + ' TO ' + toDate + ']' ;
}
//! [Portal findItems webmaps part 1]
Portal {
id: portal
Component.onCompleted : load();
onLoadStatusChanged : {
if (loadStatus === Enums.LoadStatusFailedToLoad)
retryLoad();
if (loadStatus !== Enums.LoadStatusLoaded)
return ;
searchBox.visible = true
keyWordField.focus = true
}
//! [Portal findItems completed]
onFindItemsResultChanged : {
if (portal.findItemsStatus !== Enums.TaskStatusCompleted)
return ;
// bind the item list model to the view
webmapsList.model = portal.findItemsResult.itemResults
webmapsList.visible = true ;
webmapsList.focus = true ;
}
//! [Portal findItems completed]
}
Component {
id: webmapDelegate
Rectangle {
anchors.margins : 25
width : webmapsList.width
height : 32
border.color : "white"
border.width : 2
color : "lightgrey"
radius : 10
//! [PortalItemListModel example QML delegate]
Text {
anchors {
fill : parent
margins : 10
}
text : title
color : "white"
elide : Text.ElideRight
wrapMode : Text.Wrap
horizontalAlignment : Text.AlignHCenter
}
//! [PortalItemListModel example QML delegate]
MouseArea {
anchors.fill : parent
onClicked : webmapsList.currentIndex = index;
onDoubleClicked : loadSelectedWebmap(webmapsList.model.get(index));
}
}
}
Component {
id: highlightDelegate
Rectangle {
z : 110
anchors.margins : 25
width : webmapsList.width
height : 24
color : "orange"
radius : 4
Text {
anchors {
fill : parent
margins : 10
}
text : webmapsList.model.count > 0 ? webmapsList.model.get(webmapsList.currentIndex).title : ""
font.bold : true
elide : Text.ElideRight
wrapMode : Text.Wrap
color : "white"
horizontalAlignment : Text.AlignHCenter
}
}
}
BusyIndicator {
anchors.centerIn : parent
running : portal.loadStatus !== Enums.LoadStatusLoaded
}
Rectangle {
id: resultsBox
visible : webmapsList.model && webmapsList.model.count > 0
anchors {
top : searchBox.bottom
bottom : parent .bottom
left : parent .left
right : parent .right
margins : 10
}
border.color : "grey"
border.width : 2
radius : 5
Text {
id: resultsTitle
anchors {
margins : 10
top : parent .top
left : parent .left
right : parent .right
}
text : "web maps: " + keyWordField.text
elide : Text.ElideRight
wrapMode : Text.Wrap
font.bold : true
font.pointSize : 10
horizontalAlignment : Text.AlignHCenter
}
ListView {
id: webmapsList
anchors {
margins : 20
top : resultsTitle.bottom
bottom : moreResultsButton.top
left : parent .left
right : parent .right
}
clip : true
delegate : webmapDelegate
highlightFollowsCurrentItem : true
highlight : highlightDelegate
model : null
}
Button {
id: moreResultsButton
anchors {
margins : 20
bottom : parent .bottom
horizontalCenter : resultsBox.horizontalCenter
}
text : "More Results"
visible : portal.findItemsStatus === Enums.TaskStatusCompleted && portal.findItemsResult.nextQueryParameters !== null
onClicked : searchNext();
}
}
Column {
visible : portal.loadStatus === Enums.LoadStatusLoaded
id: searchBox
anchors {
top : parent .top
horizontalCenter : parent .horizontalCenter
margins : 10
}
spacing : 5
Text {
id: instruction
text : qsTr( "search for webmaps:" )
font.bold : true
}
Row {
spacing : 5
TextField {
id: keyWordField
placeholderText : "enter keyword"
selectByMouse : true
Keys.onReturnPressed : {
if (text.length > 0 )
search(text);
}
}
Image {
source : "qrc:/Samples/CloudAndPortal/SearchForWebmap/searchIcon.png"
width : height
height : keyWordField.height
MouseArea {
anchors.fill : parent
enabled : keyWordField.text.length > 0
onClicked : search(keyWordField.text);
}
}
SequentialAnimation on x {
id: noResultsAnimation
loops : 10
running : false
PropertyAnimation { to : 50 ; duration : 20 }
PropertyAnimation { to : 0 ; duration : 20 }
}
}
}
MapView {
id: mapView
visible : false
anchors { top : searchBox.bottom; bottom : parent .bottom; left : parent .left; right : parent .right; margins : 10 }
Component.onCompleted : {
// Set the focus on MapView to initially enable keyboard navigation
forceActiveFocus();
}
}
// Declare AuthenticationView to handle any authentication challenges
AuthenticationView {
anchors.fill : parent
}
Dialog {
id: webMapMsg
modal : true
x : Math .round( parent .width - width) / 2
y : Math .round( parent .height - height) / 2
standardButtons : Dialog.Ok
title : "Could not load web map!"
property alias text : textLabel.text
Text {
id: textLabel
}
onAccepted : visible = false ;
}
}