您好我如何从Google地图中删除默认工具提示,所以我想将此工具提示替换为我的Div。
我尝试使用此代码,但没有:
google.maps.event.addListener(marker, 'mouseover', function (e) {
e.mb.target.removeAttribute('title');
这是我的代码:
marker.addListener('mouseover', function () {
$('.contact-info').show(1000);
});
答案 0 :(得分:0)
基于这个例子:
https://developers.google.com/maps/documentation/javascript/examples/infowindow-simple?hl=fr
您可以执行以下操作来显示标记的自定义工具提示:
var infowindow = new google.maps.InfoWindow({
content: contentString
});
marker.addListener('mouseover', function() {
infowindow.open(map, marker);
});