ios
ios

Reputation: 6164

iPhone app: how to implement Google Places Api

In iPhone App I want to integrate Google Places Api.

Is there any sample project or tutorial which can help me in implementing it?

Upvotes: 4

Views: 8332

Answers (4)

chings228
chings228

Reputation: 1889

most of the sample above is call http to google server to get places in the iphone app , but it has potential risk since the google server key is easy to be seen by others.

besides,ip restrict is no help in this example.

so the proper way is to pass the parameter to your own server and then call google server at your own server.

Upvotes: -1

iEinstein
iEinstein

Reputation: 2100

Yeah there are one major good tutorial here. It answers all the question

Upvotes: 1

ios
ios

Reputation: 6164

I could implement google Place api from stackoverflow answer

using the url I could get the response and Using JSON parsing I filtered the data as per my requirements

Upvotes: 1

Pier-Olivier Thibault
Pier-Olivier Thibault

Reputation: 3927

Not to my knowledge. You will have to create the call yourself. You might want to use Foursquare API (There's a lot of Foursquare Framework for iOS out there).

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

Upvotes: 0

Related Questions