我知道我们可以screenPoint
使用这个从 ESRI 地图上的触摸位置获取
val screenPoint = android.graphics.Point(motionEvent.x.roundToInt(), motionEvent.y.roundToInt())
我们也可以mapPoint
从screenPoint
使用这个
val mapPoint = mapView?.screenToLocation(screenPoint)
现在我如何从这些screenPoint
或mapPoint