【发布时间】:2020-08-26 06:40:47
【问题描述】:
我知道我们可以使用这个从 ESRI 地图上的触摸位置获取screenPoint
val screenPoint = android.graphics.Point(motionEvent.x.roundToInt(), motionEvent.y.roundToInt())
我们也可以使用这个从screenPoint 获取mapPoint
val mapPoint = mapView?.screenToLocation(screenPoint)
现在我如何从这些screenPoint 或mapPoint 获取纬度和经度
【问题讨论】:
标签: esri-maps arcgis-android-api