2011-08-19 139 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); 
    });