// XAML Map Control - http://xamlmapcontrol.codeplex.com/ // Copyright © Clemens Fischer 2012-2013 // Licensed under the Microsoft Public License (Ms-PL) #if NETFX_CORE using Windows.UI.Xaml.Controls; #else using System.Windows.Controls; #endif namespace MapControl { /// /// Displays a pushpin at a geographic location provided by the MapPanel.Location attached property. /// public class Pushpin : ContentControl { public Pushpin() { DefaultStyleKey = typeof(Pushpin); MapPanel.AddParentMapHandlers(this); } } }