有没有办法在地图上为 HERE Android SDK 标记移动设置动画?
Is there a way to animate the HERE Android SDK marker movement on the map?
我正在尝试为地图上两点之间的 MapMarker 对象移动设置动画。
这是设置新位置但没有动画的行。
marker.setCoordinate(new GeoCoordinate(lat, lon));
我找到了这个https://developers.google.com/maps/documentation/javascript/reference/marker?hl=en#Marker.setAnimation但它看起来像连续动画
也许您可以使用 PropertyAnimator 或其他工具手动创建您自己的动画并计算更改位置的进度
我正在尝试为地图上两点之间的 MapMarker 对象移动设置动画。 这是设置新位置但没有动画的行。
marker.setCoordinate(new GeoCoordinate(lat, lon));
我找到了这个https://developers.google.com/maps/documentation/javascript/reference/marker?hl=en#Marker.setAnimation但它看起来像连续动画
也许您可以使用 PropertyAnimator 或其他工具手动创建您自己的动画并计算更改位置的进度