diff --git a/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java b/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java index 38c05f449b..48884d48e5 100644 --- a/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java +++ b/libraries/map-custom/src/main/java/com/mogo/map/impl/custom/AMapViewWrapper.java @@ -17,6 +17,7 @@ import android.view.animation.Interpolator; import android.widget.TextView; import com.mogo.commons.debug.DebugConfig; +import com.mogo.commons.voice.AIAssist; import com.mogo.map.IMogoMap; import com.mogo.map.IMogoMapView; import com.mogo.map.MogoLatLng; @@ -378,6 +379,7 @@ public class AMapViewWrapper implements IMogoMapView, public void changeMapVisualAngle(VisualAngleMode angelMode) { MapAutoViewHelper mapAutoViewHelper = mMapView.getMapAutoViewHelper(); if (mapAutoViewHelper != null) { + Logger.d(TAG," 用户更改视距 currentThread : " + Thread.currentThread().getName()); mVisualAngleMode = angelMode; mapAutoViewHelper.setMapViewVisualAngle(angelMode.getCode()); } @@ -803,6 +805,14 @@ public class AMapViewWrapper implements IMogoMapView, // } else { //// mSelfMarker.marker3DIcon(R.raw.car); // } + +// UiThreadHandler.postDelayed( () -> { +// if (!isShowWarn) { +// mSelfMarker.marker3DIcon(R.raw.qfpz); +// isShowWarn = true; +// } +// }, 6_000L ); + } showSelfSpeed(location.getSpeed()); @@ -914,7 +924,9 @@ public class AMapViewWrapper implements IMogoMapView, @Override public void onMapViewVisualAngleChange(int i) { - MogoMapListenerHandler.getInstance().onMapVisualAngleChanged(getVisualAngleMode(i)); + Logger.d(TAG," 地图自动更改视距 currentThread : " + Thread.currentThread().getName()); + mVisualAngleMode = getVisualAngleMode(i); + MogoMapListenerHandler.getInstance().onMapVisualAngleChanged(mVisualAngleMode); } private VisualAngleMode getVisualAngleMode(int mode) { diff --git a/libraries/map-custom/src/main/res/raw/qfpz.n3d b/libraries/map-custom/src/main/res/raw/qfpz.n3d index 7a0d02ad53..3abf28fa94 100644 Binary files a/libraries/map-custom/src/main/res/raw/qfpz.n3d and b/libraries/map-custom/src/main/res/raw/qfpz.n3d differ diff --git a/modules/mogo-module-common/src/main/res/raw/bus.n3d b/modules/mogo-module-common/src/main/res/raw/bus.n3d index 80bc09e2d0..b8ef8271a9 100644 Binary files a/modules/mogo-module-common/src/main/res/raw/bus.n3d and b/modules/mogo-module-common/src/main/res/raw/bus.n3d differ diff --git a/modules/mogo-module-common/src/main/res/raw/othercar.n3d b/modules/mogo-module-common/src/main/res/raw/othercar.n3d index 5a3af7e7e3..c0559e6232 100644 Binary files a/modules/mogo-module-common/src/main/res/raw/othercar.n3d and b/modules/mogo-module-common/src/main/res/raw/othercar.n3d differ