1

我收到错误消息:

错误:操作无法完成。未启用 iOS 版 Places API。请参阅开发人员指南 ( https://developers.google.com/places/ios-api/start ),了解如何启用适用于 iOS 的 Google Places API。

Google 地图服务帐户已正确配置,帐单等已完成。

用于呈现的代码:

    let autocompleteController = GMSAutocompleteViewController()
    autocompleteController.delegate = self
    present(autocompleteController, animated: true, completion: nil)
4

1 回答 1

0

适用于 Android 和 iOS 的 Place Picker 已于 2019 年 1 月弃用,并于 2019 年 7 月关闭。它不能再使用了。请参阅 Google 的弃用通知

注意:地点选择器(Android、iOS)自 2019 年 1 月 29 日起弃用。此功能将于 2019 年 7 月 29 日关闭,并且在该日期之后将不再可用。

您可能想查看 Google 问题跟踪器中 Place Picker 的公共功能请求:https ://issuetracker.google.com/issues/128304760

另请注意,如果您想使用任何可用的 Places 服务(例如 Place Autocomplete),则需要迁移到一个新的 Places SDK for iOS。按照 Google迁移指南中的步骤操作。

希望这可以帮助。

于 2019-08-31T15:24:46.023 回答