add a search bar to GMSPlacePicker(iOS)

时间:2015-11-12 12:04:12

标签: ios swift swift2 google-places-api google-maps-sdk-ios

I am using GMSPlacePicker from google and it is looking great.But i would like to customise the view controller of the GMSPlacePicker and add a search bar at the top.

Any ideas?

3 个答案:

答案 0 :(得分:3)

感谢您对Places API for iOS的兴趣!我是一名从事该产品的工程师。

在API的下一个版本中,我们计划在GMSPlacePicker中添加自动填充功能,该功能将根据用户搜索输入显示地点预测。

所以你现在运气不好,但要紧紧抓住下一个版本,然后我们会有一些东西。

答案 1 :(得分:1)

更新GoogleMaps.framework默认情况下,它会将搜索栏添加到导航栏。

答案 2 :(得分:0)

这发生在我使用

appDelegate.initialViewController = self

在我的第一个viewController开始时。另外我还在使用带有隐藏导航栏的navigationController,因为我在我的应用程序中使用了自定义导航栏。评论  appDelegate.initialViewController = self

显示了导航栏,但我需要该行。所以解决方案是在展示你的GMSController之前写这个

navigationController.navigationBar.isHidden = false