我如何将事件处理程序附加到Bing地图的push pin



我试图将事件处理程序附加到我的推杆。有人能帮忙吗?以下是目前为止的内容:

' Retrieve the center of the current map view.
Dim mapCenter = Map1.Center
' Create a pushpin to put at the center of the view.
Dim pin1 As New Pushpin()
pin1.Background = New SolidColorBrush(Colors.Red)
pin1.Location = New Location(52.499634, -1.705241)

同样,如果我拖动地图,推杆会停留在它原来的位置,而不是随着地图移动。我怎么让它跟着地图移动?

谢谢

您可以通过注册LeftMouseButtonUp事件来检测引脚何时被轻敲。这足够接近,对检测水龙头没有明显的区别。

位置相对于主机控件。
您需要将Location设置为GeoCoordinate,以便引脚随地图移动。

相关内容

  • 没有找到相关文章

最新更新