Display a file with a KML network link, including displaying any network link control messages at launch.
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.
How it works
- Create a
KmlDataset
from a KML source which has network links. - Construct a
KmlLayer
with the dataset and add the layer as an operational layer. - To listen for network messages, add an event handler to the
NetworkLinkControlMessage
event on the dataset.
Relevant API
- KmlDataset
- KmlDataset.NetworkLinkControlMessage
- KmlLayer
- KmlNetworkLinkControlMessageEventArgs
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
<UserControl x:Class="ArcGISRuntime.WPF.Samples.DisplayKmlNetworkLinks.DisplayKmlNetworkLinks"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013">
<Grid>
<esri:SceneView x:Name="MySceneView" />
</Grid>
</UserControl>