Hi,
I'm trying to get the the Lat/Long coordinates of the active MapView Camera point. I can get the Camera point in X/Y, but having trouble converting. This is how I am doing it:
MapPoint cameraPoint = MapPointBuilder.CreateMapPoint(Camera.X, Camera.Y);
var projectedPoint = GeometryEngine.Instance.Project(cameraPoint, SpatialReferences.WGS84) as MapPoint;
Any guidance is appreciated.