添加转向灯和刹车灯的显示,待验证

This commit is contained in:
lixiaopeng
2022-07-11 17:01:29 +08:00
parent 79613224a0
commit 65320311de
5 changed files with 81 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ package com.mogo.map;
import android.graphics.Point;
import android.graphics.Rect;
import android.location.Location;
import android.util.Log;
import android.view.View;
import com.mogo.eagle.core.data.map.CenterLine;
@@ -252,6 +253,15 @@ public class MogoMapUIController implements IMogoMapUIController {
}
}
@Override
public void setCarLightsType(int type, int time) {
initDelegate();
if (mDelegate != null) {
Log.d("liyz", "MogoMapUIController type = " + type + "---time = " + time);
mDelegate.setCarLightsType(type, time);
}
}
@Override
public MapCameraPosition getMapCameraPosition() {
initDelegate();