I am using the ArcGIS 100.6 iOS SDK and am trying to determine the current center of the map view in lat/long coordinates and the view area. I also want to invoke a listener to detect when a user pans of zooms the map to get the new center and view area. I am need this information to create and update queries to Firebase/GeoFire so that I can place the appropriate markers on the map based on the viewable area. As the user zooms out more markers should become visible.
Google maps has a simple way to do this: center = map.getCenter.
I cannot find a simple answer to this in the SDK documentation.
I have tried setting currentCenter = mapView.center, but the result is in screen coordinates and there is no concise documentation as to how to convert this point to lat/long.
Thanks,
Steve