在 bing 地图上绘图?
如何在 bing 地图上绘图?或者实际上我想添加一个标记。我已经检测到坐标,现在我想用标记在地图上显示这个地方...
How can I draw on bing maps? Or actually I'd like to add a marker. I have detected coordinates and now I want to display this place on a map with a marker...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在地图上绘制线条,请使用
MapPolyline
元素作为Map
控件的子元素。要向Map
控件添加标记,请添加Pushpin
元素作为Map
控件的子元素。要添加多个项目(线条或图钉),请添加MapItemsControl
作为Map
控件的子项,并指定ItemsSource
和ItemTemplate
。以下代码示例显示了一个
PushPin
来显示当前位置,以及一个MapItemsControl
来显示路线上的航路点:此 博客文章也可能会帮助您入门。
To draw lines on a map you use the
MapPolyline
element as a child of theMap
control. To add a marker to theMap
control, you add aPushpin
element as a child of theMap
control. To add multiple items (lines or pushpins) you add aMapItemsControl
as a child of theMap
control and specify theItemsSource
andItemTemplate
.The following code example shows a
PushPin
to display the current location, and aMapItemsControl
to show waypoints on a route:This blog post may also help you get started.