Display a route layer and its directions using a feature collection.
Use case
Routes can be stored as feature collection layers. These layers can store useful information such as directions, estimated trip time, and more.
You can create a route layer in ArcGIS Pro and store a route layer as a portal item, making it easy to access, share, or display.
How to use the sample
Pan and zoom to view the route displayed by the feature collection layer. Press the Directions button to view the list of directions.
How it works
- Create a
PortalItem
with the item ID. - Create and load a
FeatureCollection
with the item. - After loading, get the specified
FeatureCollectionTable
by name. - Get all of the
ArcGISFeature
s usingFeatureTable::queryFeaturesAsync
. - Get the direction text from the attributes of each feature.
- Create a
FeatureCollectionLayer
with the feature collection and set it to the map'soperationalLayers
.
Relevant API
- FeatureCollection
- FeatureCollectionLayer
- FeatureCollectionTableListModel
- FeatureQueryResult
- Portal
- PortalItem
Tags
directions, feature collection, feature collection layer, portal, portal item, route layer, routing
Sample Code
// [WriteFile Name=DisplayRouteLayer, Category=Routing]
// [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]
#ifdef PCH_BUILD
#include "pch.hpp"
#endif // PCH_BUILD
// sample headers
#include "DisplayRouteLayer.h"
// ArcGIS Maps SDK headers
#include "ArcGISFeature.h"
#include "AttributeListModel.h"
#include "Error.h"
#include "Feature.h"
#include "FeatureCollection.h"
#include "FeatureCollectionLayer.h"
#include "FeatureCollectionTable.h"
#include "FeatureCollectionTableListModel.h"
#include "FeatureIterator.h"
#include "FeatureQueryResult.h"
#include "FeatureTable.h"
#include "LayerListModel.h"
#include "Map.h"
#include "MapQuickView.h"
#include "MapTypes.h"
#include "Point.h"
#include "Portal.h"
#include "PortalItem.h"
#include "PortalTypes.h"
#include "QueryParameters.h"
#include "SpatialReference.h"
// Qt headers
#include <QFuture>
#include <QJsonValue>
using namespace Esri::ArcGISRuntime;
namespace
{
static const QString featureCollectionItemId("0e3c8e86b4544274b45ecb61c9f41336");
}
DisplayRouteLayer::DisplayRouteLayer(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
Portal* portal = new Portal(this);
m_portalItem = new PortalItem(portal, featureCollectionItemId, this);
connect(m_portalItem, &PortalItem::doneLoading, this, [this](const Error& loadError)
{
if (!loadError.isEmpty())
{
qWarning() << loadError.message() << loadError.additionalMessage();
return;
}
// if the portal item is a feature collection, add the feature collection to the map's operational layers
if (m_portalItem->type() == PortalItemType::FeatureCollection)
{
m_featureCollection = new FeatureCollection(m_portalItem, this);
m_featureCollectionLayer = new FeatureCollectionLayer(m_featureCollection, this);
connect(m_featureCollectionLayer, &FeatureCollectionLayer::doneLoading, this, [this](const Error& e)
{
if (!e.isEmpty())
return;
getDirections();
emit enableDirectionsButton();
});
m_map->operationalLayers()->append(m_featureCollectionLayer);
}
else
{
qWarning() << "Portal item with ID " << featureCollectionItemId << " is not a feature collection.";
}
});
m_portalItem->load();
}
DisplayRouteLayer::~DisplayRouteLayer() = default;
void DisplayRouteLayer::init()
{
// Register the map view for QML
qmlRegisterType<MapQuickView>("Esri.Samples", 1, 0, "MapView");
qmlRegisterType<DisplayRouteLayer>("Esri.Samples", 1, 0, "DisplayRouteLayerSample");
}
MapQuickView* DisplayRouteLayer::mapView() const
{
return m_mapView;
}
// Set the view (created in QML)
void DisplayRouteLayer::setMapView(MapQuickView* mapView)
{
if (!mapView || mapView == m_mapView)
return;
m_mapView = mapView;
m_mapView->setMap(m_map);
const Point vpCenter(-122.8309, 45.2281, SpatialReference(4326));
m_mapView->setViewpointCenterAsync(vpCenter, 800000);
emit mapViewChanged();
}
void DisplayRouteLayer::getDirections()
{
if (!m_featureCollectionLayer)
return;
FeatureCollectionTableListModel* tables = m_featureCollection->tables();
for (FeatureTable* table : *tables)
{
if (table->loadStatus() == LoadStatus::Loaded)
{
if (table->tableName() == "DirectionPoints")
{
QueryParameters queryParams;
queryParams.setWhereClause("1=1");
table->queryFeaturesAsync(queryParams).then(this, [this](const FeatureQueryResult* featureQueryResult)
{
if (!featureQueryResult)
return;
// Clear the directions list before repopulating it
m_featureDirection.clear();
while (featureQueryResult && featureQueryResult->iterator().hasNext())
{
m_feature = static_cast<ArcGISFeature*>(featureQueryResult->iterator().next(this));
m_featureDirection = m_featureDirection + "\n - " + m_feature->attributes()->attributeValue(QStringLiteral("DisplayText")).toString();
emit directionsChanged();
}
});
}
}
}
}
QString DisplayRouteLayer::directions() const
{
return m_featureDirection;
}