在 bing 地图上绘图?

发布于 2024-10-14 16:15:30 字数 65 浏览 3 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

您的好友蓝忘机已上羡 2024-10-21 16:15:30

要在地图上绘制线条,请使用 MapPolyline 元素作为 Map 控件的子元素。要向 Map 控件添加标记,请添加 Pushpin 元素作为 Map 控件的子元素。要添加多个项目(线条或图钉),请添加 MapItemsControl 作为 Map 控件的子项,并指定 ItemsSourceItemTemplate

以下代码示例显示了一个 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>

博客文章也可能会帮助您入门。

To draw lines on a map you use the MapPolyline element as a child of the Map control. To add a marker to the Map control, you add a Pushpin element as a child of the Map control. To add multiple items (lines or pushpins) you add a MapItemsControl as a child of the Map control and specify the ItemsSource and ItemTemplate.

The following code example shows a PushPin to display the current location, and a MapItemsControl to show waypoints on a route:

<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>

This blog post may also help you get started.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文