[6.8.0][Feat]新增车外语音播报功能

This commit is contained in:
chenfufeng
2024-11-19 16:42:08 +08:00
parent 241ba6feb6
commit 6794d25894
4 changed files with 52 additions and 19 deletions

View File

@@ -1,6 +1,10 @@
package com.mogo.eagle.core.data.och
import com.mogo.eagle.core.data.map.MogoLocation
import com.mogo.eagle.core.data.map.SiteMarkerBean
// type 0-> 起终点坐标 坐标index 0 起点 坐标index 1 终点
data class OchInfo(var type: Int, var latLonList: List<MogoLocation>)
// type 1-> 起终点+站点
data class OchInfo(var type: Int, var latLonList: List<MogoLocation>?) {
var siteMarkerList: List<SiteMarkerBean>? = null// 起终点+站点
}