mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
19 lines
468 B
C#
19 lines
468 B
C#
|
|
// XAML Map Control - http://xamlmapcontrol.codeplex.com/
|
|||
|
|
// © 2016 Clemens Fischer
|
|||
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Windows.Data.Xml.Dom;
|
|||
|
|
|
|||
|
|
namespace MapControl
|
|||
|
|
{
|
|||
|
|
public partial class WmsImageLayer
|
|||
|
|
{
|
|||
|
|
private static async Task<XmlDocument> LoadDocument(string requestUri)
|
|||
|
|
{
|
|||
|
|
return await XmlDocument.LoadFromUriAsync(new Uri(requestUri));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|