feat: 添加当前位置Marker,显示实时设计高度,完善地形图代码
Some checks failed
Build and generate screenshots / generate_screenshots (push) Has been cancelled
Release API docs / release_apidocs (push) Has been cancelled

This commit is contained in:
2025-11-28 22:40:10 +08:00
parent 3ec494ca69
commit af2257b467
19 changed files with 2458 additions and 107 deletions

View File

@@ -0,0 +1,17 @@
package com.icegps.geotools.ktx
import com.icegps.shared.model.GeodeticCoordinate
/**
* @author tabidachinokaze
* @date 2025/11/27
*/
fun GeodeticCoordinate.niceStr(): String {
return "[$longitude, $latitude, $altitude]".format(this)
}
fun List<GeodeticCoordinate>.niceStr(): String {
return joinToString(", ", "[", "]") {
it.niceStr()
}
}