我想将图像添加到我的图钉信息框中,但我不确定如何。我想也许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);