Determine if a layer is currently being viewed.
Use case
The view status includes information on the loading state of layers and whether layers are visible at a given scale. You might change how a layer is displayed in a layer list to communicate whether it is being viewed in the map. For example, you could show a loading spinner next to its name when the view status is Loading, grey out the name when NotVisible or OutOfScale, show the name normally when Active, or with a warning or error icon when the status is Warning or Error.
How to use the sample
Tap the Load layer button to add a feature layer to the map. The current view status of the layer will display on the map. Zoom in and out of the map and note the layer disappears when the map is scaled outside of its min and max scale range. Control the layer's visibility with the Hide layer button. If you disconnect your device from the network and pan around the map, a warning will display. Reconnect to the network to remove the warning. The layer's current view status will update accordingly as you carry out these actions.
How it works
- Create a
Map
with some operational layers. - Set the map on a
MapView
. - Connect to the
layerViewStateChanged
signal from the map view. - Display the
LayerViewStatus
flag for theFeatureLayer
.
Relevant API
- LayerViewState
- LayerViewStatus
- Map
- MapQuickView::layerViewStateChanged
- MapView
About the data
The Satellite (MODIS) Thermal Hotspots and Fire Activity layer presents detectable thermal activity from MODIS satellites for the last 48 hours. MODIS Global Fires is a product of NASA’s Earth Observing System Data and Information System (EOSDIS), part of NASA's Earth Science Data. EOSDIS integrates remote sensing and GIS technologies to deliver global MODIS hotspot/fire locations to natural resource managers and other stakeholders around the World.
Additional information
The following are members of the LayerViewStatus
enum:
LayerViewStatus::Active
: The layer in the view is active.LayerViewStatus::NotVisible
: The layer in the view is not visible.LayerViewStatus::OutOfScale
: The layer in the view is out of scale. A status ofLayerViewStatus::OutOfScale
indicates that the view is zoomed outside of the scale range of the layer. If the view is zoomed too far in (e.g. to a street level), it is beyond the max scale defined for the layer. If the view has zoomed too far out (e.g. to global scale), it is beyond the min scale defined for the layer.LayerViewStatus::Loading
: The layer in the view is loading. Once loading has completed, the layer will be available for display in the view. If there was a problem loading the layer, the status will be set to ERROR.LayerViewStatus::Error
: The layer in the view has an unrecoverable error. When the status isLayerViewStatus::Error
, the layer cannot be rendered in the view. For example, it may have failed to load, be an unsupported layer type, or contain invalid data.LayerViewStatus::Warning
: The layer in the view has a non-breaking problem with its display, such as incomplete information (eg. by requesting more features than the max feature count of a service) or a network request failure.
If your device supports airplane mode, you can toggle this on and pan around the map to see layers display the WARNING status when they cannot online fetch data. Toggle airplane mode back off to see the warning disappear.
Tags
layer, load, map, status, view, visibility
Sample Code
// [WriteFile Name=DisplayLayerViewDrawState, Category=Maps]
// [Legal]
// 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
// 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
#include "DisplayLayerViewDrawState.h"
#include "FeatureLayer.h"
#include "ServiceFeatureTable.h"
#include "Map.h"
#include "MapQuickView.h"
#include "PortalItem.h"
#include "Viewpoint.h"
#include "Point.h"
using namespace Esri::ArcGISRuntime;
DisplayLayerViewDrawState::DisplayLayerViewDrawState(QObject* parent /* = nullptr */):
QObject(parent),
m_map(new Map(BasemapStyle::ArcGISTopographic, this))
{
}
DisplayLayerViewDrawState::~DisplayLayerViewDrawState() = default;
void DisplayLayerViewDrawState::init()
{
// Register the map view for QML
qmlRegisterType<MapQuickView>("Esri.Samples", 1, 0, "MapView");
qmlRegisterType<DisplayLayerViewDrawState>("Esri.Samples", 1, 0, "DisplayLayerViewDrawStateSample");
}
MapQuickView* DisplayLayerViewDrawState::mapView() const
{
return m_mapView;
}
// Set the view (created in QML)
void DisplayLayerViewDrawState::setMapView(MapQuickView* mapView)
{
if (!mapView || mapView == m_mapView)
return;
m_mapView = mapView;
m_mapView->setMap(m_map);
connect(m_mapView, &MapQuickView::layerViewStateChanged, this, &DisplayLayerViewDrawState::onLayerViewStateCompleted);
emit mapViewChanged();
}
void DisplayLayerViewDrawState::loadLayer()
{
// load a feature layer from a portal item
Portal* portal = new Portal(this);
m_portalItem = new PortalItem(portal, "b8f4033069f141729ffb298b7418b653", this);
m_featureLayer = new FeatureLayer(m_portalItem, 0, this);
connect(m_featureLayer, &FeatureLayer::loadStatusChanged, this, [this] (LoadStatus loadStatus)
{
m_loading = (loadStatus == LoadStatus::Loading) ? true : false;
emit loadingChanged();
});
// load feature layer and set the viewpoint
connect(m_featureLayer, &FeatureLayer::doneLoading, this, [this](Error e)
{
if (!e.isEmpty())
return;
const Point point{-11000000, 4500000, SpatialReference::webMercator()};
const Viewpoint vp{point, 40000000.0};
m_mapView->setViewpoint(vp);
});
// set min/max scale to demonstrate different view states.
m_featureLayer->setMinScale(400000000.0);
m_featureLayer->setMaxScale(400000000.0 / 10);
m_map->operationalLayers()->append(m_featureLayer);
}
void DisplayLayerViewDrawState::changeFeatureLayerVisibility(bool visible)
{
if (m_featureLayer->loadStatus() == LoadStatus::Loaded)
m_featureLayer->setVisible(visible);
}
void DisplayLayerViewDrawState::onLayerViewStateCompleted(Layer* layer, LayerViewState layerViewState)
{
// check if feature layer has been created otherwise do nothing.
if (!m_featureLayer)
return;
// only update the QStringList if the layer is the feature layer.
if (layer->name() != m_featureLayer->name())
return;
// clear string list for new view state(s).
m_viewStatuses.clear();
if (layerViewState.statusFlags() & Esri::ArcGISRuntime::LayerViewStatus::Active)
m_viewStatuses.append("Active");
if (layerViewState.statusFlags() & Esri::ArcGISRuntime::LayerViewStatus::NotVisible)
m_viewStatuses.append("NotVisible");
if (layerViewState.statusFlags() & Esri::ArcGISRuntime::LayerViewStatus::OutOfScale)
m_viewStatuses.append("OutOfScale");
if (layerViewState.statusFlags() & Esri::ArcGISRuntime::LayerViewStatus::Loading)
m_viewStatuses.append("Loading");
if (layerViewState.statusFlags() & Esri::ArcGISRuntime::LayerViewStatus::Error)
m_viewStatuses.append("Error");
if (layerViewState.statusFlags() & Esri::ArcGISRuntime::LayerViewStatus::Warning)
{
m_viewStatuses.append("Warning");
if (!layerViewState.error().isEmpty())
{
const QString warningMessage = QString("Warning message: %1").arg(layerViewState.error().message());
m_warningMessage = warningMessage;
emit warningMessageChanged();
}
}
emit viewStatusChanged();
}