private void MostrarUbicacionTiempoReal()
 {
     if (PermissionsManager.AreLocationPermissionsGranted(this))
     {
         LocationComponent locationComponent = mapboxMap.LocationComponent;
         locationComponent.ActivateLocationComponent(LocationComponentActivationOptions.InvokeBuilder(this, this.style).Build());
         locationComponent.LocationComponentEnabled = true;
         locationComponent.SetCameraMode(CameraMode.TRACKING, this);
         locationComponent.RenderMode = RenderMode.COMPASS;
     }
 }