We are facing issue with UWP application with ESRI Runtime 10.2.7.
We are creating a Zoom tool to a user defined area.The tool is working fine when runs with developer desktop machine.
But we side loaded the application to a lap top with a different screen size and when we draw polygon area to zoom in the map, there is a shift to mouse point and the draw point (please see the screen capture). The shift will increase from top left corner to bottom right. Any settings need to done to handle the screen resolution? Please advice.
Here is the code part
var NewExtent = await MyMapView.Editor.RequestShapeAsync(Esri.ArcGISRuntime.Controls.DrawShape.Rectangle);
await MyMapView.SetViewAsync(NewExtent);
