mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
23 lines
503 B
C#
23 lines
503 B
C#
// XAML Map Control - http://xamlmapcontrol.codeplex.com/
|
|
// Copyright © Clemens Fischer 2012-2013
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
using System.Windows.Media;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace MapControl
|
|
{
|
|
public partial class MapShape : Shape
|
|
{
|
|
public MapShape(Geometry geometry)
|
|
{
|
|
Geometry = geometry;
|
|
}
|
|
|
|
protected override Geometry DefiningGeometry
|
|
{
|
|
get { return Geometry; }
|
|
}
|
|
}
|
|
}
|