[3.4.0-map-sdk] convert stopline

This commit is contained in:
zhongchao
2023-09-19 11:04:17 +08:00
parent f29829751c
commit a08df54c4a
4 changed files with 10 additions and 86 deletions

View File

@@ -1,36 +0,0 @@
package com.mogo.eagle.core.data.map
class MapRoadInfo {
class StopLine {
/**
* 停止线的长度
*/
var distance: Double = 0.0
/**
* 车道ID
*/
var laneId: List<String>? = null
/**
* 停止线上的点
*/
var points: List<MogoLatLng> = emptyList()
/**
* 道路ID
*/
var roadId: List<String>? = null
/**
* 瓦片ID
*/
var tieId: String = ""
/**
* 自车到停止线的距离
*/
var distanceOfCarToStopLine: Double = 0.0
}
}