答案 0 :(得分:0)
假设您正在谈论谷歌地图标记。您可以使用标题来向标记添加文本。 即
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var mapOptions = {
zoom: 4,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
var marker = new google.maps.Marker({
position: myLatlng,
title:"Hello World!"
});
// To add the marker to the map, call setMap();
marker.setMap(map);
查看Markers
上的文档这里提到的另一个选择是使用标签文字: How to add text label in Google Map API