View on GitHub Sample viewer app
Create and save a map as an ArcGIS PortalItem
(i.e. web map).
Use case
Maps can be created programatically in code and then serialized and saved as an ArcGIS web map
. A web map
can be shared with others and opened in various applications and APIs throughout the platform, such as ArcGIS Pro, ArcGIS Online, the JavaScript API, Collector, and Explorer.
Map
is created with a Basemap
and a few operational layers.Portal
object is created and loaded. This will issue an authentication challenge, prompting the user to provide credentials.Map::saveAs
is called and a new Map
is saved with the specified title, tags, and folder.ArcGIS Online, ArcGIS Pro, portal, publish, share, web map
Sample CodeCreateAndSaveMap.cpp CreateAndSaveMap.cpp CreateAndSaveMap.h LayerWindow.qml SaveOptionsWindow.qml CreateAndSaveMap.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
// [WriteFile Name=CreateAndSaveMap, Category=Maps]
// [Legal]
// Copyright 2018 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]
#ifdef PCH_BUILD
#include "pch.hpp"
#endif // PCH_BUILD
// sample headers
#include "CreateAndSaveMap.h"
// ArcGIS Maps SDK headers
#include "ArcGISMapImageLayer.h"
#include "Basemap.h"
#include "Error.h"
#include "ErrorException.h"
#include "Item.h"
#include "LayerListModel.h"
#include "Map.h"
#include "MapQuickView.h"
#include "MapTypes.h"
#include "Portal.h"
// Qt headers
#include <QFuture>
#include <QUuid>
using namespace Esri::ArcGISRuntime;
CreateAndSaveMap::CreateAndSaveMap(QQuickItem* parent /* = nullptr */):
QQuickItem(parent)
{
}
void CreateAndSaveMap::init()
{
// Register the map view for QML
qmlRegisterType<MapQuickView>("Esri.Samples", 1, 0, "MapView");
qmlRegisterType<CreateAndSaveMap>("Esri.Samples", 1, 0, "CreateAndSaveMapSample");
}
void CreateAndSaveMap::componentComplete()
{
QQuickItem::componentComplete();
// find QML MapView component
m_mapView = findChild<MapQuickView*>("mapView");
// create the Portal object
constexpr bool loginRequired = true;
m_portal = new Portal(QUrl("https://www.arcgis.com"), loginRequired, this);
connect(m_portal, &Portal::doneLoading, this, [this](const Error& e)
{
if (!e.isEmpty())
return;
emit portalLoaded();
});
}
void CreateAndSaveMap::createMap(const QString& basemap, const QStringList& operationalLayers)
{
// Create the Basemap
Basemap* selectedBasemap = nullptr;
if (basemap == "Streets")
selectedBasemap = new Basemap(BasemapStyle::ArcGISStreets, this);
else if (basemap == "Imagery")
selectedBasemap = new Basemap(BasemapStyle::ArcGISImageryStandard, this);
else if (basemap == "Topographic")
selectedBasemap = new Basemap(BasemapStyle::ArcGISTopographic, this);
else if (basemap == "Oceans")
selectedBasemap = new Basemap(BasemapStyle::ArcGISOceans, this);
// Create the Map with the basemap
m_map = new Map(selectedBasemap, this);
// Add Operational Layers
for (const QString& layer : operationalLayers)
{
if (layer == "WorldElevations")
{
ArcGISMapImageLayer* elevationLyr = new ArcGISMapImageLayer(QUrl("https://sampleserver5.arcgisonline.com/arcgis/rest/services/Elevation/WorldElevations/MapServer"), this);
elevationLyr->setOpacity(0.5f);
m_map->operationalLayers()->append(elevationLyr);
}
else if (layer == "Census")
{
m_map->operationalLayers()->append(new ArcGISMapImageLayer(QUrl("https://sampleserver5.arcgisonline.com/arcgis/rest/services/Census/MapServer"), this));
}
}
// Set the Map on the MapView
m_mapView->setMap(m_map);
}
// Load the portal if not already loaded
void CreateAndSaveMap::loadPortal()
{
if (!m_portal)
return;
if (m_portal->loadStatus() == LoadStatus::Loaded)
emit portalLoaded();
else
m_portal->load();
}
void CreateAndSaveMap::saveMap(const QString& title, const QString& tags, const QString& description)
{
if (!m_map || !m_portal)
return;
// create save parameters
const QStringList tagsList = tags.split(",");
constexpr bool forceSave = false;
const PortalFolder folder;
const QByteArray thumbnail;
// save the map
m_map->saveAsAsync(m_portal, title, tagsList, forceSave, folder, description, thumbnail).then(this,
[this]()
{
const QString itemId = m_map->item()->itemId();
emit saveMapCompleted(true, itemId);
})
.onFailed(
[this](ErrorException e)
{
emit saveMapCompleted(false, "", QString("%1 %2").arg(e.error().message(), e.error().additionalMessage()));
});
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4