https://developers.google.com/maps/documentation/javascript/markers#animate
想請問下面這行程式碼要如何理解呢?(黃標處)
function toggleBounce() {
if (marker.getAnimation() !== null) {
marker.setAnimation(null);
} else {
marker.setAnimation(google.maps.Animation.BOUNCE);
}
}
ps. 文件說明:
BOUNCE 指出標記在原地彈跳。
彈跳標記會持續彈跳,直到它的 animation 屬性明確設成 null 才會停止。