[8.1.2][feat]决策功能用动画实现

This commit is contained in:
chenfufeng
2025-07-10 14:37:29 +08:00
parent 64fcdc0422
commit 67ce8b1c8c
26 changed files with 843 additions and 111 deletions

View File

@@ -80,4 +80,6 @@ interface IMogoMap {
fun toScreenLocations(data: List<LonLatPoint>): List<android.graphics.Point>
fun toScreenLocation(lon: Double, lat: Double): android.graphics.Point?
fun isInCurrentFrame(lon: Double, lat: Double): Boolean
}

View File

@@ -268,4 +268,8 @@ class AMapWrapper(map: MapAutoViewHelper?, mapView: MapAutoView, controller: IMo
}
}
}
override fun isInCurrentFrame(lon: Double, lat: Double): Boolean {
return mMapView.getMapController()?.isInCurrentFrame(lon, lat) ?: false
}
}