Bug
Bug-ID-Nummer | BUG-000165254 |
---|---|
Eingereicht | February 21, 2024 |
Zuletzt geändert | August 21, 2024 |
Gilt für | ArcGIS Runtime SDK for .NET |
Gefunden in Version | 100.15 |
Betriebssystem | Android |
Betriebssystemversion | 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:
Unterstützung durch ArcGIS-Experten anfordern
Esri Support App herunterladen