2016-02-19 79 views

回答

0

你的意思是像in the Google Maps API documentation example here

function addMarkerWithTimeout(position, timeout) { 
 
    window.setTimeout(function() { 
 
    markers.push(new google.maps.Marker({ 
 
     position: position, 
 
     map: map, 
 
     animation: google.maps.Animation.DROP 
 
    })); 
 
    }, timeout); 
 
}

+0

是的,它可能是。我正在考慮如何使用ajax請求進行異步調用,以便不斷從服務器獲取點並以類似方式推送它們。 – user2670818

+0

然後你應該更新你的問題(和標題)。現在它只是詢問關於標記動畫的內容,這在鏈接中提到。 – IronWaffleMan