Last month I started working on BikeSpot again. The main goal for the next release is to improve location search. The current location search had the following limitations:
-
Limited to San Francisco: While I currently only have bike rack data in San Francisco, I want search to be available in other cities as well. Bike parking data can be crowd sourced, so the app should not prevent any users from searching in other locations.
-
No autocomplete: Users expects and is used to autocomplete when searching. Not having it is bad user experience.
So I decided to use Google Maps and take advantage of its location search and place auto complete features.
Google Maps SDK for iOS handles responses to user gestures.
Google Places API for iOS features autocomplete.
Switching from MKMapView to GMSMapView
- Custom my location button
- Implement GMSMapViewDelegate
- Camera position zoom
- Google Places API for iOS is packaged with the Google Maps SDK for iOS.
- Adding custom marker
Using Google Places API for autocomplete
Two ways for autocomplete:
- Autocomplete UI control - and there are different methods within this one
- Get place predictions programmatically
After playing with different methods, I decided to add a search bar to the navigation bar because it was the least intrusive to the existing UI.
Google Places API iOS limitation
- Cannot search using search string
- Must tap on a place in the autocomplete list to search
Attribution
If you use the Google Maps SDK for iOS in your application, you must include the attribution text as part of a legal notices section. It’s recommended to include logal notices as an independent menu item or as part of an “About” menu item.
You can get the attribution text by making a call to [GMSServices openSourceLicenseInfo]
.