mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-02-07 16:24:19 +01:00
17 lines
252 B
C#
17 lines
252 B
C#
#if UWP
|
|
using Windows.UI.Xaml.Shapes;
|
|
#else
|
|
using Microsoft.UI.Xaml.Shapes;
|
|
#endif
|
|
|
|
namespace MapControl
|
|
{
|
|
public partial class MapPath : Path
|
|
{
|
|
public MapPath()
|
|
{
|
|
MapPanel.InitMapElement(this);
|
|
}
|
|
}
|
|
}
|