[6.5.0] note the test code

This commit is contained in:
EmArrow
2024-06-21 14:53:22 +08:00
parent 8744b0f190
commit 328050c328
5 changed files with 7 additions and 7 deletions

View File

@@ -41,7 +41,7 @@ class RoadCrossCameraManager : CallerMapRoadListenerManager.OnRoadListener {
fun init(context: Context?) {
mContext = context
CallerMapRoadListenerManager.registerRoadListener(TAG, this) //todo emArrow test note
CallerMapRoadListenerManager.registerRoadListener(TAG, this)
}
//todo 记录方法执行时间

View File

@@ -110,9 +110,9 @@ class MapBizView(context: Context?, attrs: AttributeSet?) : MogoMapView(context,
override fun onChassisLocationWGS84(gnssInfo: MogoLocation) {
// 跟新地图控件 112.582776,26.931655
gnssInfo.longitude = 112.582776
gnssInfo.latitude = 26.931655 //todo emArrow test
gnssInfo.heading = 15.0
// gnssInfo.longitude = 112.582776
// gnssInfo.latitude = 26.931655 //todo emArrow test
// gnssInfo.heading = 15.0
setExtraGPSData(gnssInfo)
accLimit = gnssInfo.acceleration < accThreshold
}