iOS app for Google search - ios

I am trying to build an app for iOS where we search for images based on user input, and responses will be returned by Google search for images. Do we have a Google search API which returns the aforesaid results?

The Image Search API has been deprecated since 2011. Use Google Custom Search API instead.

Related

Fetch toilets list using google maps places api

The Google Map's places list does not contain toilets in it, but I need to show toilets list on Google Maps. How do I show this data using a Google API?
I'm assuming you're trying to fetch this data via the iOS SDK. You're better off using the Web Service API instead. i.e Issue an HTTP request via the app and then show the places that exist by iterating through the response.
https://developers.google.com/places/web-service/search#TextSearchRequests is a great place to start. You can use "toilets" or "toilets near me" as the search query.

Search Airport code using google search api

Currently I'm building an iOS application which is having flight search feature and planning to use QPX google api for that but for airport/city code not able to find the api in google service.
Is it possible to use QPX Express api in iOS application because didn't see the way to parse the response.
Here is the link for google flight search "https://www.google.co.in/flights/".Would like to know which api google has been using it for airport/city code search.
Have tried with Google Places API for iOS https://developers.google.com/places/ but don't know the way to get the airport codes.

Google Places API for iOS vs Google places Web service

I plan to have an application to list nearby places in a UITableView with UISearchController combined by Auto-complete feature to filter the result of places and I'm trying to use Google Places API.
I'm confused because I don't know which API should I use:
Google Places API Web Service
or
Google Places API for iOS
I didn't find a way to get a list of places in the Google Places API for iOS documentation.
When to use Google Places API Web Service and when to use Google Places API for iOS ? and what works best in my case (get list of places with pagination and filter by name and category options)
I have already generated an API-KEY for Google Places API for iOS can I still use this key in Google Places API Web Service ?
In general, if developing for iOS, you should prefer the Google Places API for iOS. It is designed to be easier to use and more efficient from iOS than using the Web Service.
However, the Places API for iOS is relatively new, and does not yet have all the features of the Web Service. In this case, you might prefer to use only the Web Service, or to combine the Places API for iOS and the Web Service.
For your particular use case, I would recommend using the Places API for iOS getCurrentPlace functionality + Autocomplete. getCurrentPlace returns a list of places where we believe the device to be located.
If that doesn't meet your needs, you could use nearby search from the Web Service + Autocomplete from the iOS API.
For question #2: You cannot use the same API Key for iOS and Web Services. The former requires an iOS Key, and the latter a Server key. You also need to enable both services in the Google Developers Console.

Is it possible to get the geolocation of Google Plus Feeds which user is following

Currently I am working on iOS/android app in which I need to fetch the Geolocations of the feeds/posts on the Google plus for ex.News Company XYZ having page on G+ and they are posting the News feeds on it so I want the feeds with there location programatically for iOS
Does google provide such api to share the geolocation of every Feeds?
Location data isn't returned with posts in the current API. Might be worth starring the feature request, or creating a new one with your specific needs: https://code.google.com/p/google-plus-platform/issues/detail?id=15

Possible to style Google Maps SDK for iOS?

Is it possible to style the map in Google Maps SDK for iOS like in Google Maps API used in web pages?
It is not yet possible to style the map in the iOS SDK. Please file a feature request.

Resources