[Taxi driver V2.6.5] taxi 乘客端小地图小车方向修复

This commit is contained in:
wangmingjun
2022-04-02 16:56:42 +08:00
parent 1b501caf53
commit 0953d32953

View File

@@ -182,7 +182,7 @@ public class TaxiPassengerMapDirectionView
//更新车辆位置
if (mCarMarker != null) {
CallerLogger.INSTANCE.d(M_TAXI_P + TAG, "location.getBearing() = " + location.getBearing());
mCarMarker.setRotateAngle(location.getBearing());
mCarMarker.setRotateAngle(360 - location.getBearing());
mCarMarker.setPosition(currentLatLng);
mCarMarker.setToTop();
}