[8.1.0][opt]解决合并后的冲突

This commit is contained in:
chenfufeng
2025-06-20 15:39:55 +08:00
parent 4052506d79
commit d5498f8ce6
5 changed files with 95 additions and 8 deletions

View File

@@ -247,6 +247,10 @@ class AMapWrapper(map: MapAutoViewHelper?, mapView: MapAutoView, controller: IMo
return mAMap?.switchData(x, y, isWgs84)
}
override fun convertAngle(angle: Double, lon: Double, lat: Double): Double {
return MapTools.convertAngle(angle, lon, lat)
}
override fun toScreenLocations(data: List<LonLatPoint>): List<android.graphics.Point> {
return MapTools.toScreenLocations(data, mMapView.getMapController())
}