如何在infowindow中引入HTML
标签?我知道如何显示文字,但我想对其进行样式设置并使用段落<p>
和div <div>
进行排版。
这是显示infowindow的函数:
function getInfoWindowEvent(marker) {
infowindow.close()
infowindow.setContent("This is where my HTML content goes. But how?");
infowindow.open(map, marker);
}
应该有infowindow.setContent('<div>'+"some text"+'</div>')
这样的东西,但我不确切知道。
答案 0 :(得分:1)
您可以在infowindow.setContent()
添加标签,以便自己回答问题。
function getInfoWindowEvent(marker) {
infowindow.close()
infowindow.setContent("<div>Some text</div>");
infowindow.open(map, marker);
}