Navigation Arrow Not updating:高速导航时导航箭头不旋转

Navigation Arrow Not updating: Navigation arrow not rotating at high speed navigation

enter image description here

在上图中,您可以看到我的导航箭头没有指向我驾驶的正确方向。当我在高速行驶时总是会出现此问题 speed.What 可以解决此问题。 谢谢

上面的解决方案很简单我错过了:

mapView.getMapSettings().setFollowPositions(true);

并将 if else 逻辑应用到下面并提供

 mapView.getMapSettings().setHeadingMode(SKMapSettings.SKHeadingMode.HISTORIC_POSITIONS);
 mapView.getMapSettings().setHeadingMode(SKMapSettings.SKHeadingMode.ROUTE);

感谢您的意见。