IPhone App: How to Implement Google Places Api

In the iPhone app, I want to integrate Google Places Api.

Is there any sample project or tutorial that can help me in its implementation?

Please help and suggest

thanks

+4
source share
4 answers

I could implement google Place api from fooobar.com/questions/1310221 / ...

using url I could get a response and using JSON analysis I filtered the data according to my requirements

+1
source

Yes, there is one great good tutorial here . He answers all the questions.

+1
source

I do not know. You will need to create a call yourself. You might want to use the Foursquare API (there are many Foursquare Framework for iOS there).

If you really want to use the Google Places API, you will probably be better off using your own implementation (see question for some API related links) with NSURLConnections.

0
source

most of the example above is calling http on a google server to get places in the iphone application, but it has a potential risk, since the google server key is easy to see by others.

In addition, the ip restriction does not help in this example.

so the correct way is to pass the parameter to your own server and then call the google server on your own server.

-1
source

All Articles