如何在 bing 地图中标记图钉?

发布于 2024-12-01 04:49:12 字数 60 浏览 5 评论 0原文

谁能告诉我如何在 Bing 地图中标记图钉以获取兴趣点? AM 能够放置多个图钉,但无法动态为其添加标签。

Can any one tell me how to label pushpins in Bing maps for points of int interest? AM able to place multiple pushpins but unable to add labels to them dynamically.

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

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

发布评论

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

评论(3

恋你朝朝暮暮 2024-12-08 04:49:12

您是否使用 v7 地图控件和 API?

查看 Infobox 类并添加 Infobox 实体 - 这些允许您添加可以包含标签信息的自定义 HTML 块。请参阅http://msdn.microsoft.com/en-us/library/gg675208。 .aspx.

或者,使用图钉,您可以在创建图钉时在 PushpinOptions 对象 (http://msdn.microsoft.com/en-us/library/gg427629.aspx) 中指定文本字段。

Are you using the v7 maps control and APIs?

Check out the Infobox class and adding Infobox entities - these allow you to add a custom HTML block that can contain your label info. See http://msdn.microsoft.com/en-us/library/gg675208.aspx.

Alternatively with a pushpin you can specify the text field in the PushpinOptions object (http://msdn.microsoft.com/en-us/library/gg427629.aspx) when creating a pushpin.

请恋爱 2024-12-08 04:49:12

pin.setOptions({text: "标签"});

pin.setOptions({text: "label"});

凉墨 2024-12-08 04:49:12

如果您使用的是 7,请尝试这个小技巧:

pinLayer.push(pinX);
pin1.cm1001_er_etr.dom.setAttribute('title', '推送图钉标题');

这是一个未发布的 DOM。请记住,如果 MS 决定更改它,您将必须找到不同的解决方案。

If you're using 7, try this little hack:

pinLayer.push(pinX);
pin1.cm1001_er_etr.dom.setAttribute('title', 'Push Pin Title');

This is an unpublished DOM. And keep in mind if MS decides to change it, you'll have to find a different solution.

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