Hello @MateuszZugaj, Thank you for the reply. I tried this solution which is working fine on iOS but on android it is causing app crash. I have tried below code. Device.BeginInvokeOnMainThread(async () => { var currentViewpoint = SBUMapView.GetCurrentViewpoint(ViewpointType.CenterAndScale); var newViewpoint = new Viewpoint(currentViewpoint.TargetGeometry as MapPoint, currentViewpoint.TargetScale, 0); await SBUMapView.SetViewpointAsync(newViewpoint, TimeSpan.FromSeconds(5)); }); SBUMapView.LocationDisplay.AutoPanMode = LocationDisplayAutoPanMode.Off;
... View more