XAML-Map-Control/MapControl/Map.cs

20 lines
568 B
C#
Raw Normal View History

// XAML Map Control - http://xamlmapcontrol.codeplex.com/
// Copyright © 2013 Clemens Fischer
2012-05-04 12:52:20 +02:00
// Licensed under the Microsoft Public License (Ms-PL)
2012-04-25 22:02:53 +02:00
namespace MapControl
{
2012-05-04 12:52:20 +02:00
/// <summary>
/// MapBase with input event handling.
2012-05-04 12:52:20 +02:00
/// </summary>
public partial class Map : MapBase
2012-04-25 22:02:53 +02:00
{
private const double MouseWheelDelta = 120;
/// <summary>
/// Gets or sets the amount by which the ZoomLevel property changes during a MouseWheel event.
/// </summary>
public double MouseWheelZoomChange { get; set; }
2012-04-25 22:02:53 +02:00
}
}