我正在使用Fusion Table图层来显示标记数据。使用FT处理标记,我没有看到在标记上定义title属性的方法。
想要在鼠标悬停时执行以下操作: http://www.guardian.co.uk/travel/series/berlin-city-guide?intcmp=122
有什么想法吗?
答案 0 :(得分:0)
有一个标题可以使用,但就像任何常规html控件上的标题属性一样,请在此处查看:http://code.google.com/apis/maps/documentation/javascript/reference.html#MarkerOptions
守护者正在这样做的方式可能是在标记上使用事件处理程序并使用像这样的inforwindow
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!" // see how title is used
});
google.maps.event.addListener(marker, 'mouseover', function() {
infowindow = new google.maps.InfoWindow();
infowindow.setContent(contentString); // contentString can be html as far as i know whose style you can override
infowindow.setPosition(event.latLng);
infowindow.open(map);
});
答案 1 :(得分:0)
今天使用Fusion Tables无法做到这一点。我建议在Google Maps API问题跟踪器上提交功能请求。