2011-08-19 136 views

回答

0

今天没有办法与Fusion Tables做到这一点。我建议在Google Maps API问题跟踪器上提交功能请求。

0

没有可以使用的标题,但就是喜欢上任何普通的HTML控件的title属性检查出来这里使用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); 
    });