示例#1
0
        public async void RefreshCityDetails(bool replaceData)
        {
            TryGetUserPosition();
            if (SelectedCity != null)
            {
                _tracking.TrackReloadCityEvent(SelectedCity);
                SetLoadingCity();
                await LoadCity(SelectedCity.Id, true);

                SetLoadingCity(false);
                if (replaceData)
                {
                    UpdateParkingLotListFilter();
                }
            }
        }