0

有没有办法让标记的标题显示在移动设备上?例如:

var marker = new google.maps.Marker({map: map,position: position,title: 'My title'});

我只是希望当用户点击标记时标题显示在移动设备上(我用 iOS 测试过)(这应该被解释为鼠标悬停,对吧?)。

非常感谢。

4

1 回答 1

0

title选项用于将鼠标悬停在桌面上的标记上。

如果要显示名称,则可以尝试将单击绑定到标记:

google.maps.event.addListener(marker, 'click', function() {
    document.getElementById('some_element').textContent = marker.getTitle();
});

或者您也可以尝试使用infoWindow

于 2013-07-29T16:11:06.353 回答