XAML-Map-Control/MapControl/MapPath.Silverlight.WinRT.cs
ClemensF 10527c3f0d Version 2.0:
- Support for Windows Phone 8.1 by making MapControl.WinRT a portable library
- Unified TileContainer and MapOverlay implementations across platforms
2014-07-01 18:57:44 +02:00

21 lines
418 B
C#

// XAML Map Control - http://xamlmapcontrol.codeplex.com/
// Copyright © 2014 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
#if WINDOWS_RUNTIME
using Windows.UI.Xaml.Shapes;
#else
using System.Windows.Shapes;
#endif
namespace MapControl
{
public partial class MapPath : Path
{
public MapPath()
{
MapPanel.AddParentMapHandlers(this);
}
}
}