使用 SQL Server 表中的坐标添加图钉

发布于 2024-08-30 18:58:08 字数 116 浏览 4 评论 0原文

我是 Silverlight 和 C# 编程的初学者,我正在创建一个 Bing 地图应用程序。

我尝试添加带有来自 SQL Server 的坐标和信息的图钉,但我不知道如何成功。

麦克风

I am a beginner in Silverlight and C# programming and i´m creating a Bing Map application.

I try to add pushpins with coordinates and information from a SQL Server, but I can't figure out how to succeed.

Mike

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你爱我像她 2024-09-06 18:58:08

我使用纬度和经度添加了带有以下代码的图钉。

XAML 标记:

<Grid x:Name="LayoutRoot" Background="White">
    <m:Map x:Name="myMap" CredentialsProvider="<Your Key>" Mode="Road"/>
</Grid>

添加带有工具提示的图钉的代码:

var location = new Location(latitude, longitude);
var pin = new Pushpin {Location = location};
pin.SetValue(ToolTipService.ToolTipProperty, new TextBlock{Text = "Hello World"});
myMap.Children.Add(pin);

我希望这会有所帮助。如果它解决了您的问题,请将其标记为答案。

干杯!

I have added push pins with the code below using latitude and longitude.

XAML markup:

<Grid x:Name="LayoutRoot" Background="White">
    <m:Map x:Name="myMap" CredentialsProvider="<Your Key>" Mode="Road"/>
</Grid>

Code to add the push pin with a tooltip:

var location = new Location(latitude, longitude);
var pin = new Pushpin {Location = location};
pin.SetValue(ToolTipService.ToolTipProperty, new TextBlock{Text = "Hello World"});
myMap.Children.Add(pin);

I hope this helps. Please mark this as the answer if it fixes your issue.

Cheers!

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