我知道我可以为谷歌地图上标记的“添加”设置动画,例如https://developers.google.com/maps/documentation/javascript/overlays#MarkerAnimations
无论如何我可以做反向动画来从地图上删除标记吗?我希望它在移除标记时飞回地图顶部......这可能吗?
到目前为止,这是我的删除代码(只是将其从地图中删除,没有动画):
// TODO figure out if there is a way to animate this removal, like the add
$.contextualMap.prototype.removeMarker = function(m) {
m.mapMarker.setMap(null);
m.mapMarker = null;
};