如何将图像添加到信息框? - Bing Maps V8

时间:2017-03-24 20:35:55

标签: bing-maps pushpin

我想在我的图钉信息框中添加图片,但我不确定如何。我想也许htmlContent会这样做,但信息框似乎被覆盖了。

我真的不想创建一个新的弹出窗口,只需将图像添加到现有的弹出窗口即可。这可能吗?

1 个答案:

答案 0 :(得分:1)

使用HTML和img标记,然后将其作为信息框的描述值传递。这是一个简单的代码示例:

var map = new Microsoft.Maps.Map(document.getElementById('myMap'), {
    credentials: 'Your Bing Maps Key',
    center: new Microsoft.Maps.Location(47.60357, -122.32945)
});
var center = map.getCenter();
var infobox = new Microsoft.Maps.Infobox(center, { title: 'Map Center',
    description: 'Here is my image: <img src="https://www.bingmapsportal.com/Content/images/poi_custom.png" />' });
infobox.setMap(map);