Google街景视图https请求正在输出html中的链接,而不是发送请求

时间:2016-08-23 00:55:15

标签: javascript google-maps-api-3

我在邻居地图上工作,在我的信息窗口中,我想要一个包含体育场街景的小div。我为每个位置创建了一个唯一的https请求,唯一的是它打印实际链接而不是发出请求并显示谷歌地图街景图像。我将在下面提供有问题的代码以及指向项目的github存储库的链接

for items in list:
    for x in ['a','b','c','d']:
        if x not in item:
            item[x] = ""

github存储库:https://github.com/omar-jandali/neighborhood-map

1 个答案:

答案 0 :(得分:1)

如果要绘制图像,则必须使用<img/>

lInfowindow.setContent("<div><h2>" + currentMarker.content.name + "</h2><h3>" + 
                        currentMarker.content.address + "</h3><div> <img src='" + 
                        currentMarker.content.streetViewRequest + "'/> </div></div>");