Limit google autocomplete to City and Country only iOS Swift
You could limit the search results
let filter = GMSAutocompleteFilter()
filter.type = .City
filter.country = "uk"
using the above code to restrict result to UK and only get City results.
After searching for a while. i found the solution.
let filter = GMSAutocompleteFilter()
filter.type = GMSPlacesAutocompleteTypeFilter.City