-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathDisplayKmlNetworkLinks.xaml.cs
63 lines (54 loc) · 2.88 KB
/
DisplayKmlNetworkLinks.xaml.cs
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
// 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.
using Esri.ArcGISRuntime.Geometry;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.Ogc;
namespace ArcGIS.Samples.DisplayKmlNetworkLinks
{
[ArcGIS.Samples.Shared.Attributes.Sample(
name: "Display KML network links",
category: "Layers",
description: "Display a file with a KML network link, including displaying any network link control messages at launch.",
instructions: "The sample will load the KML file automatically. The data shown should refresh automatically every few seconds. Pan and zoom to explore the map.",
tags: new[] { "KML", "KMZ", "Keyhole", "Network Link", "Network Link Control", "OGC" })]
public partial class DisplayKmlNetworkLinks : ContentPage
{
public DisplayKmlNetworkLinks()
{
InitializeComponent();
Initialize();
}
private void Initialize()
{
// Set up the basemap.
MySceneView.Scene = new Scene(BasemapStyle.ArcGISImagery);
// Create the dataset.
KmlDataset dataset = new KmlDataset(new Uri("https://www.arcgis.com/sharing/rest/content/items/600748d4464442288f6db8a4ba27dc95/data"));
// Listen for network link control messages.
// These should be shown to the user.
dataset.NetworkLinkControlMessage += Dataset_NetworkLinkControlMessage;
// Create the layer from the dataset.
KmlLayer fileLayer = new KmlLayer(dataset);
// Add the layer to the map.
MySceneView.Scene.OperationalLayers.Add(fileLayer);
// Zoom in to center the map on Germany.
MySceneView.SetViewpoint(new Viewpoint(new MapPoint(8.150526, 50.472421, SpatialReferences.Wgs84), 20000000));
}
private void Dataset_NetworkLinkControlMessage(object sender, KmlNetworkLinkControlMessageEventArgs e)
{
// Due to the nature of the threading implementation,
// the dispatcher needs to be used to interact with the UI.
// The dispatcher takes an Action, provided here as a lambda function.
Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(async () =>
{
await Application.Current.Windows[0].Page.DisplayAlert("KML layer message", e.Message, "OK");
});
}
}
}