增加控制地图「白天」「夜间」模式

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2022-04-11 16:38:39 +08:00
parent 0f66542bca
commit 63f3f8d8c8
22 changed files with 155 additions and 528 deletions

View File

@@ -20,6 +20,7 @@ public interface IMogoMapFrameController extends IProvider, IDestroyable {
/**
* 切换到自研vr
* @param isNightMode true-夜间模式false-白天模式
*/
void changeToVRMode();
void stepInVrMode(boolean isNightMode);
}

View File

@@ -34,4 +34,12 @@ interface IMoGoMapFragmentProvider : IMoGoFunctionServerProvider {
* 获取车道中心线信息
*/
fun getCenterLineInfo(lon: Double, lat: Double, angle: Float): CenterLine?
/**
* 进入VR 模式
*
* @param isDayMode true-白天模式false-夜间模式
*/
fun stepInVrMode(isDayMode: Boolean)
}