private async Task <ActionResult> ProcessLocationDisambiguation(SearchViewModel model)
        {
            var items = await _googlePlacesService.SearchAsync(model.LocationSearchModel.Text);

            return(View("LocationDisambiguation", new LocationDisambiguationViewModel()
            {
                SearchText = model.LocationSearchModel.Text, MatchingLocations = items.ToList()
            }));
        }