Display KML network links

View inC++QMLView on GitHubSample viewer app

Display a file with a KML network link, including displaying any network link control messages at launch.

screenshot

Use case

KML files can reference other KML files on the network and support automatically refreshing content. For example, survey workers will benefit from KML data shown on their devices automatically refreshing to show the most up-to-date state. Additionally, discovering KML files linked to the data they are currently viewing provides additional information to make better decisions in the field.

How to use the sample

The sample will load the KML file automatically. The data shown should refresh automatically every few seconds. Pan and zoom to explore the map.

The message button will show the last message received from the KML network resource.

How it works

  1. Create a KmlDataset from a KML source which has network links.
  2. Construct a KmlLayer with the dataset and add the layer as an operational layer.
  3. To listen for network messages by connecting to the signal, KmlDataset::kmlNetworkLinkMessageReceived.

Relevant API

  • KmlDataset(Url)
  • KmlLayer(KmlDataset)
  • KmlNetworkLink
  • kmlNetworkLinkMessageReceived

Offline data

This sample uses the radar.kmz file, which can be found on ArcGIS Online.

About the data

This map shows the current air traffic in parts of Europe with heading, altitude, and ground speed. Additionally, noise levels from ground monitoring stations are shown.

Tags

Keyhole, KML, KMZ, Network Link, Network Link Control, OGC

Sample Code

DisplayKmlNetworkLinks.cppDisplayKmlNetworkLinks.cppDisplayKmlNetworkLinks.hMessageButton.qmlDisplayKmlNetworkLinks.qml
Use dark colors for code blocksCopy
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
// [WriteFile Name=DisplayKmlNetworkLinks, Category=Layers]
// [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

#include "DisplayKmlNetworkLinks.h"

#include "KmlDataset.h"
#include "KmlLayer.h"
#include "Scene.h"
#include "SceneQuickView.h"
#include "MapTypes.h"
#include "LayerListModel.h"
#include "KmlNetworkLink.h"
#include "SpatialReference.h"
#include "Point.h"
#include "Viewpoint.h"

#include <QFuture>

using namespace Esri::ArcGISRuntime;

DisplayKmlNetworkLinks::DisplayKmlNetworkLinks(QQuickItem* parent /* = nullptr */):
  QQuickItem(parent)
{
}

DisplayKmlNetworkLinks::~DisplayKmlNetworkLinks() = default;

void DisplayKmlNetworkLinks::init()
{
  // Register classes for QML
  qmlRegisterType<SceneQuickView>("Esri.Samples", 1, 0, "SceneView");
  qmlRegisterType<DisplayKmlNetworkLinks>("Esri.Samples", 1, 0, "DisplayKmlNetworkLinksSample");
}

QString DisplayKmlNetworkLinks::currentKmlNetworkMessage() const
{
  return m_currentKmlNetworkMessage;
}

void DisplayKmlNetworkLinks::setCurrentKmlNetworkMessage(const QString& message)
{
  m_currentKmlNetworkMessage = message;
  emit kmlMessageRecieved(message);
}

void DisplayKmlNetworkLinks::componentComplete()
{
  QQuickItem::componentComplete();

  // Create a scene and give it to the SceneView
  m_sceneView = findChild<SceneQuickView*>("sceneView");
  Scene* scene = new Scene(BasemapStyle::ArcGISImageryStandard, this);

  // Create a KML dataset from the given resource.
  // This is a KML resource that references other KML resources over a network.
  KmlDataset* dataset = new KmlDataset(QUrl("https://www.arcgis.com/sharing/rest/content/items/600748d4464442288f6db8a4ba27dc95/data"), this);
  connect(dataset, &KmlDataset::kmlNetworkLinkMessageReceived,
          this, [this](KmlNetworkLink* /*link*/, const QString& message)
  {
    setCurrentKmlNetworkMessage(message);
  });

  // Now that we have the data, we need a layer to interpret it.
  KmlLayer* fileLayer = new KmlLayer(dataset, this);
  scene->operationalLayers()->append(fileLayer);

  // Take a look at continental Europe, where we'll see most of the data.
  m_sceneView->setViewpointAsync(Viewpoint { Point { 8.150526, 50.472421, SpatialReference::wgs84() }, 20000000 } );
  m_sceneView->setArcGISScene(scene);
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.