如何在bing地图上绘图?或者实际上我想添加一个标记。我已检测到坐标,现在我想在带有标记的地图上显示这个地方......
答案 0 :(得分:2)
要在地图上绘制线条,请使用MapPolyline
元素作为Map
控件的子元素。要向Map
控件添加标记,请添加Pushpin
元素作为Map
控件的子元素。要添加多个项目(线条或图钉),请添加MapItemsControl
作为Map
控件的子项,并指定ItemsSource
和ItemTemplate
。
以下代码示例显示PushPin
显示当前位置,MapItemsControl
显示路线上的航点:
<maps:Map x:Name="_map"
CopyrightVisibility="Collapsed"
CredentialsProvider="Your API Key Here"
LogoVisibility="Collapsed">
<maps:MapItemsControl ItemsSource="{Binding WayPoints}">
<maps:MapItemsControl.ItemTemplate>
<DataTemplate>
<maps:Pushpin Background="{Binding BackgroundBrush}" Location="{Binding Location}"/>
</DataTemplate>
</maps:MapItemsControl.ItemTemplate>
</maps:MapItemsControl>
<maps:Pushpin x:Name="_current" Background="Blue" Location="{Binding CurrentLocation}"/>
</maps:Map>
此blog post也可以帮助您入门。