mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
72 lines
2.1 KiB
C#
72 lines
2.1 KiB
C#
using Windows.System;
|
|
#if UWP
|
|
using Windows.Devices.Input;
|
|
using Windows.UI.Xaml.Input;
|
|
#else
|
|
using Microsoft.UI.Input;
|
|
using Microsoft.UI.Xaml.Input;
|
|
#endif
|
|
|
|
namespace MapControl
|
|
{
|
|
public partial class Map
|
|
{
|
|
public Map()
|
|
{
|
|
ManipulationMode
|
|
= ManipulationModes.Scale
|
|
| ManipulationModes.TranslateX
|
|
| ManipulationModes.TranslateY
|
|
| ManipulationModes.TranslateInertia;
|
|
|
|
PointerWheelChanged += OnPointerWheelChanged;
|
|
PointerMoved += OnPointerMoved;
|
|
ManipulationDelta += OnManipulationDelta;
|
|
ManipulationCompleted += OnManipulationCompleted;
|
|
}
|
|
|
|
private void OnPointerWheelChanged(object sender, PointerRoutedEventArgs e)
|
|
{
|
|
if (e.Pointer.PointerDeviceType == PointerDeviceType.Mouse)
|
|
{
|
|
var point = e.GetCurrentPoint(this);
|
|
|
|
// Standard mouse wheel delta value is 120.
|
|
//
|
|
OnMouseWheel(point.Position, point.Properties.MouseWheelDelta / 120d);
|
|
}
|
|
}
|
|
|
|
private bool? manipulationEnabled;
|
|
|
|
private void OnPointerMoved(object sender, PointerRoutedEventArgs e)
|
|
{
|
|
if (!manipulationEnabled.HasValue &&
|
|
e.GetCurrentPoint(this).Properties.IsLeftButtonPressed)
|
|
{
|
|
manipulationEnabled = e.KeyModifiers == VirtualKeyModifiers.None;
|
|
}
|
|
}
|
|
|
|
private void OnManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
|
|
{
|
|
if (manipulationEnabled.HasValue && manipulationEnabled.Value)
|
|
{
|
|
if (e.PointerDeviceType == PointerDeviceType.Mouse)
|
|
{
|
|
TranslateMap(e.Delta.Translation);
|
|
}
|
|
else
|
|
{
|
|
TransformMap(e.Position, e.Delta.Translation, e.Delta.Rotation, e.Delta.Scale);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
|
|
{
|
|
manipulationEnabled = null;
|
|
}
|
|
}
|
|
}
|