如何在Google地图标签的文本中使用br
。我尝试使用如下。但没有解决。有什么特定的方式使用它吗? ??
var marker = new google.maps.Marker({
map: this.map,
icon: 'img/background.png',
label: {
text: "name: " + String(account.name) + "\ncity :" + String(account.city),
color: "#fff",
},
position: {
lat: parseFloat(account.lat),
lng: parseFloat(account.lng)
}
});
答案 0 :(得分:1)
像这样使用\n
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: 'Hello\nWorld!'
});
您可以在此处详细了解Google Maps Markers Simple Markers