mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// © 2021 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
using Windows.UI.Xaml;
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
namespace MapControl
|
|
{
|
|
/// <summary>
|
|
/// Pushpin at a geographic location specified by the Location property.
|
|
/// </summary>
|
|
public class Pushpin : ContentControl
|
|
{
|
|
public static readonly DependencyProperty AutoCollapseProperty = DependencyProperty.Register(
|
|
nameof(AutoCollapse), typeof(bool), typeof(Pushpin),
|
|
new PropertyMetadata(false, (o, e) => MapPanel.SetAutoCollapse((Pushpin)o, (bool)e.NewValue)));
|
|
|
|
public static readonly DependencyProperty LocationProperty = DependencyProperty.Register(
|
|
nameof(Location), typeof(Location), typeof(Pushpin),
|
|
new PropertyMetadata(null, (o, e) => MapPanel.SetLocation((Pushpin)o, (Location)e.NewValue)));
|
|
|
|
public Pushpin()
|
|
{
|
|
DefaultStyleKey = typeof(Pushpin);
|
|
MapPanel.InitMapElement(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets/sets MapPanel.AutoCollapse.
|
|
/// </summary>
|
|
public bool AutoCollapse
|
|
{
|
|
get { return (bool)GetValue(AutoCollapseProperty); }
|
|
set { SetValue(AutoCollapseProperty, value); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets/sets MapPanel.Location.
|
|
/// </summary>
|
|
public Location Location
|
|
{
|
|
get { return (Location)GetValue(LocationProperty); }
|
|
set { SetValue(LocationProperty, value); }
|
|
}
|
|
}
|
|
}
|