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

How to Add Images to Infobox? - Bing Maps V8

我想将图像添加到我的图钉信息框,但我不确定如何操作。我想也许 htmlContent 会这样做,但信息框似乎被覆盖了。

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

使用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);