我尝试更改部分标题的颜色,但看起来标题选项不采用 html 格式。我怎样才能让它工作?
谢谢
var testtitle = '<font color="green">This is some text!</font> another text';
var marker = new google.maps.Marker({
position: location,
title: testtitle,
map: map
});
我尝试更改部分标题的颜色,但看起来标题选项不采用 html 格式。我怎样才能让它工作?
谢谢
var testtitle = '<font color="green">This is some text!</font> another text';
var marker = new google.maps.Marker({
position: location,
title: testtitle,
map: map
});
你必须使用 InfoWindow 对象
请参阅此文档google map api
var infowindow = new google.maps.InfoWindow({
content: "<span>any html goes here</span>"
});
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'Uluru (Ayers Rock)'
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
“标题”是为google.maps.Marker对象自动创建的工具提示。它不支持 HTML 标记。如果你想创建一个不同于默认的,你可以,但它是自定义的。