Изображение "Powered by Google" отсутствует
Я использую GMSAutocompleteViewController и просто устанавливаю свойства autocompleteBounds и autocompleteFilter. Поскольку это не пользовательский компонент, он должен автоматически отображать изображение "Powered by Google", но это не так. Для тестирования я использовал iPhone 5S с iOS 10.3.3 и 6S Plus с iOS 11.0.3.
Вот код:
private func showGooglePlaces() {
let autocompleteViewController = GMSAutocompleteViewController()
autocompleteViewController.delegate = self
if let currentLocation = currentLocation {
let bounds = GMSCoordinateBounds(coordinate: currentLocation.coordinate, coordinate: currentLocation.coordinate)
autocompleteViewController.autocompleteBounds = bounds
} else {
let filter = GMSAutocompleteFilter()
filter.type = .establishment
filter.country = "DE"
autocompleteViewController.autocompleteFilter = filter
}
present(autocompleteViewController, animated: true, completion: nil)
}