如何在 bing 地图中标记图钉?
谁能告诉我如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否使用 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.
pin.setOptions({text: "标签"});
pin.setOptions({text: "label"});
如果您使用的是 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.