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 才会停止。