Bug
Bug ID Number | BUG-000165254 |
---|---|
Submitted | February 21, 2024 |
Last Modified | August 21, 2024 |
Applies to | ArcGIS Runtime SDK for .NET |
Version found | 100.15 |
Operating System | Android |
Operating System Version | N/A |
Status | Will Not Be Addressed |
Suggested workaround is to trigger a redraw of the map. For example following code will trigger a redraw by minimally changing the size of the mapview and then revert it back.
``` protected override void OnResume() { var mv = (MapView)MainPage.FindByName("MyMapView"); mv.Margin = new Thickness(1, 0, 0, 0); EventHandler sizeChanged = null; sizeChanged = (s, e) => { MapView mapView = (MapView)s; mapView.SizeChanged -= sizeChanged; mapView.Margin = new Thickness(); }; mv.SizeChanged += sizeChanged; } ```
Bug ID: BUG-000165254
Software:
Get help from ArcGIS experts
Download the Esri Support App