1. 解决app列表内存泄漏问题

2. 独立APP在onPause时不关闭adas算法
3. 解决npe问题
This commit is contained in:
wangcongtao
2020-09-09 10:05:25 +08:00
parent cf2460b54e
commit d4d0399b27
10 changed files with 49 additions and 15 deletions

View File

@@ -703,7 +703,7 @@ public class MapMarkerManager implements IMogoMarkerClickListener,
} );
}
public void onSyncMarkerResponse(MarkerResponse response){
public void onSyncMarkerResponse( MarkerResponse response ) {
if ( ignoreDrawRequest() ) {
return;
}
@@ -862,6 +862,9 @@ public class MapMarkerManager implements IMogoMarkerClickListener,
// 平滑移动
private void startSmooth( IMogoMarker iMogoMarker, MarkerOnlineCar markerOnlineCar,
MarkerLocation markerLocation ) {
if ( iMogoMarker == null ) {
return;
}
List< MarkerCarPois > poiList = markerOnlineCar.getPois();
if ( filterErrorPoint( poiList ) ) {
return;