我正在尝试使用WPF内置事件启用GMap.Net控制多点触控,但我没有成功。
我发现了一系列关于多点触控的文章,例如this和this。在所有这些内容中,ManipulationContainer
是一个画布和可移动控件放在其上,但在GMap问题ManipulationContainer
中GMapControl
并且无法控制它。如何使用e.ManipulationDelta
数据进行缩放和移动?
GMapControl
具有Zoom
属性,通过增加或减少它,您可以放大或缩小。
答案 0 :(得分:3)
快速查看代码会显示GMapControl
is an ItemsContainer
。
您应该可以重新设置ItemsPanel
模板并在那里提供IsManipulationEnabled
属性:
<g:GMapControl x:Name="Map" ...>
<g:GMapControl.ItemsPanel>
<ItemsPanelTemplate>
<Canvas IsManipulationEnabled="True" />
</ItemsPanelTemplate>
</g:GMapControl.ItemsPanel>
<!-- ... -->
此时您需要连接Window
:
<Window ...
ManipulationStarting="Window_ManipulationStarting"
ManipulationDelta="Window_ManipulationDelta"
ManipulationInertiaStarting="Window_InertiaStarting">
并在Code Behind中提供适当的方法(无耻地被盗并改编自MSDN Walkthrough):
void Window_ManipulationStarting(
object sender, ManipulationStartingEventArgs e)
{
e.ManipulationContainer = this;
e.Handled = true;
}
void Window_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
{
// uses the scaling value to supply the Zoom amount
this.Map.Zoom = e.DeltaManipulation.Scale.X;
e.Handled = true;
}
void Window_InertiaStarting(
object sender, ManipulationInertiaStartingEventArgs e)
{
// Decrease the velocity of the Rectangle's resizing by
// 0.1 inches per second every second.
// (0.1 inches * 96 pixels per inch / (1000ms^2)
e.ExpansionBehavior.DesiredDeceleration = 0.1 * 96 / (1000.0 * 1000.0);
e.Handled = true;
}