2017-10-17 33 views

回答

0

您可以爲您的kmllayer添加事件偵聽器。添加一個事件偵聽器來調用一個函數,該函數可以創建一個消息框或調用一個現有的消息框。

kmlLayer.addListener('mouseenter', function(e) { 
    var text = 'Some Text'; 
    showInContentWindow(text); 
}); 

function showInContentWindow(text) { 
    // create or call an existing window 
    var sidediv = document.getElementById('content-window'); 
    sidediv.innerHTML = text; 
}