我正在使用下面的代码在地图上画线以计算距离,但面临挑战,因为坐标直到 7 位才返回准确的值。
mapCenterLongitude 和 mapCenterLatitude 返回十进制值,直到 7 位,但是当传递给 Graphics() 时,坐标的最后一位减少并只返回 6 位
val startPoints= Point(mapCenterLongitude!!.toDouble(), mapCenterLatitude!!.toDouble(), srWgs84) val locationMarker= SimpleMarkerSymbol(SimpleMarkerSymbol.Style.CIRCLE, 0xFF0000FF.toInt(), 10f)
val startLocation = 图形(startPoints,locationMarker)