3

我正在尝试使用 WPF 内置事件启用GMap.Net控件多点触控,但我没有成功。

我发现了一系列关于多点触控的文章,比如这个这个。在所有这些中,ManipulationContainer是一个画布和放置在其上的可移动控件,但在 GMap 中,问题ManipulationContainerGMapControl并且无法控制它。如何使用e.ManipulationDelta数据进行缩放和移动?

GMapControl一个Zoom属性,通过增加或减少它,您可以放大或缩小。

4

1 回答 1

3

快速浏览一下代码会发现它GMapControl是一个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">

并在后面的代码中提供适当的方法(无耻地窃取并改编自此 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;
}
于 2012-03-16T16:52:40.620 回答