0
votes
1answer
23 views

Cant fetch data from NSURL

I am fetching result from google place search url,if i search for "Newyork", everything works fine.But if I give "New york" , the result json is different and I cant take it in NSData. This is the url ...
0
votes
0answers
30 views

Google Places API stops working after several entries

This is my google API code: (no need to read everything, just the API part) -(void)blocksWithText:(UITextField *)sender{ SPGooglePlacesAutocompleteQuery *query = [SPGooglePlacesAutocompleteQuery ...
0
votes
3answers
70 views

How to find Lat and long from id of a place from google place API

I have google id of a place,how can I find out that place's Lat and long ? Is there any google url for that,I want the output in json
0
votes
0answers
55 views

Google places API - is the reference field reliable?

I need a "places API" for a smartphone application. So far, I think I'm going to use "Google Places API". https://developers.google.com/places/documentation/ The app relies on two kinds of places ...
1
vote
1answer
100 views

Is there any Apple api like google Place Search API

In my iphone app I am using MKMap kit,currently I am plotting places on map according to the results get from Google Place API,But as per google's doc,I must use his values only in google Maps. But ...
0
votes
0answers
30 views

google place API-different behaviours on iOS and in browser

I am trying to fetch the data from google place API.I have tried the url with one type,and getting the result.But when I give pipes to seperate the types I am getting Json Error.But I am getting the ...
-1
votes
1answer
117 views

Show Photos From Google Place API Response [closed]

Please see this is the response of the Google Place API. How to show the Photo from the photo tag. I have done this but not working, Please suggest me what i do to show image. NSDictionary *temp = ...
1
vote
2answers
401 views

How to search for multiple types with Google Places API in an iOS app

I need to search for more than one type with the Google API for an iOS app. here's how I search for one type. In this example it's of type museum I'd like to search both museum and art_gallery. How ...
1
vote
0answers
210 views

MKMapView and Google Places [closed]

sorry for the lost post here. I am following a Ray Wenderlich tutorial. I have queried Google Places, and I have also gotten a response back in an NSArray called places. However I want to display them ...
0
votes
2answers
183 views

how can i query google places for country specific cuisine?

i am trying to accomplish country specific Cuisine places, means like mexican food, spanish food, Thai food, indian food, via google places API on an iPhone app. How can i do that?? As i see ...
0
votes
0answers
103 views

How to tell if search is for city name, specific business, address, or type of business in MapKit?

I'd like to implement a feature similar to google maps with search capability for iphone. I have a search bar and map view to display pins as results of a search. How I can incorporate searches for ...
0
votes
1answer
274 views

google place api for ios

I am trying to find location of places with business names. I think I should use google place api because clgeocoder cannot locate place with name. So I looked at the google place api and little ...
0
votes
1answer
122 views

Can't get data from Google Places

I am trying to get the google places API to work on my iPhone project. Now, I had it working about an hour ago, but I can't seem to figure out what I did to make it stop working. Any help would be ...
0
votes
0answers
195 views

Google place api maximum result 10?

Using Google Place API, I am getting restaurant list, the result per query is limited to 10. Then, how can we have the additional list with additional data? For example, when there is smaller ...
2
votes
0answers
297 views

Display list in table view by using google places api

I have three things in my table: Institute, Restaurant, Hospital. I want that by clicking on Restaurant, I should find the restaurant names near by 1km by using google places API. I have been using ...
0
votes
1answer
155 views

finding both “Shopping_mall” and “food” within single URL for google places API

I tried following URLs to get both "shopping_mall" and "food" within a single request. ...
0
votes
1answer
376 views

Show hotels (and near by places) by appropriate icon on Map in iPhone App

I am using Google places API for getting places near by the predefined location. It works fine. I am supposed to show PushPins for each place. For now, I am using default red pushpins for each place. ...
1
vote
3answers
816 views

How can I add places to Google Places API in iPhone App

I am able to Search places using Google Places API. How i can add my places using Google Places API. I have seen documentation but unable to figure it out. ...
1
vote
1answer
3k views

REQUEST_DENIED in responce of Google Places API Request (sensor=true)

I am trying to get places around my location, using Google Places API. Following is the code, for hitting URL for places search. NSString *URL = [NSString ...
2
votes
1answer
306 views

Embedding current location ( longitude and latitude ) in the Google Places API

I am trying to integrate Google Places API into my iOS app. I am referring to this blog : http://iphonebyradix.blogspot.com/2011/07/working-with-google-places-api.html Now I am finding out my current ...
2
votes
1answer
423 views

iPhone & Google Places API

I am using Google place API in my application. Well, its working fine and giving response for some places. But for some places, its giving "ZERO RESULTS". NSURL *url = [NSURL URLWithString:[NSString ...