private async Task SearchPlace(string queryText)
        {
            var locations = await _mapManager.FindAddress(queryText);

            if (!locations.Any())
            {
                // await DisplayAlert("Place not found", "Search query could not find place.Please refine your search phrase.", "OK");
                return;
            }
            _mapManager.ClearAllPins();
            _mapManager.AddLocationPins(locations);
        }