Merge branch 'dev_robotaxi-d_241112_6.8.0' of gitlab.zhidaoauto.com:SCA/L4HA/AndroidApp/MoGoEagleEye into dev_robotaxi-d_241112_6.8.0
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.mogo.eagle.core.data.map
|
||||
|
||||
import com.mogo.eagle.core.data.v2x.Point
|
||||
|
||||
data class SiteMarkerBean(var latLng: Point, var resId: Int, var anchorX: Float, var anchorY: Float)
|
||||
@@ -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// 起终点+站点
|
||||
}
|
||||
Reference in New Issue
Block a user