[8.0.0][Opt]优化决策、预测地图渲染

This commit is contained in:
chenfufeng
2025-05-21 19:03:28 +08:00
parent 74dffcb288
commit 57a62699be
13 changed files with 556 additions and 226 deletions

View File

@@ -21,6 +21,18 @@ object CallerChassisLocationWGS84ListenerManager : CallerBase<IMoGoChassisLocati
return mGnssInfo.copy(mGnssInfo, mGnssInfo.longitude, mGnssInfo.latitude)
}
fun getLocationHeading(): Double {
return mGnssInfo.heading
}
fun getWgs84Lon(): Double {
return mGnssInfo.longitude
}
fun getWgs84Lat(): Double {
return mGnssInfo.latitude
}
/**
* 添加监听并指定回掉频率
*/

View File

@@ -10,6 +10,15 @@ object CallerMapIdentifyManager {
@Volatile
var roam = Pair("", false)
@Volatile
var isPreViewLoaded = false
@Volatile
var isPreView2Loaded = false
@Volatile
var isPreView3Loaded = false
@Volatile
var isDecViewLoaded = false
private val roamApi: IMogoRoma
get() = ARouter.getInstance().build(MogoServicePaths.PATH_MAP_BIZ)
.navigation() as IMogoRoma