The Google Places API is a service that returns information about Places — defined within this API as establishments, geographic locations, or prominent points of interest — using HTTP requests. Place requests specify locations as latitude/longitude coordinates.

learn more… | top users | synonyms

0
votes
2answers
93 views

API for searching for specific places by proximity

I would like to return specific places (stores like Target, Macy's, etc.) by location (latitude, longitude). I have been using the google places api and entering the different stores in the name ...
0
votes
1answer
34 views

a meshed-up result printed out while accessing google Places API data using libcURL in C

i'm stuck on the problem while getting HTTP data into char* from google places API(text search requests, https://developers.google.com/places/documentation/search) using libcURL, in C. this is a part ...
0
votes
0answers
145 views

How to do a nearby search of multiple locations in a single request to google places api

I want to get multiple specific locations using the google places api nearby search. What is the format for querying multiple locations with the NAME parameter. The api shows the following for a ...
0
votes
0answers
129 views

Google Places Nearby Search doesn't return correct place when criteria is 2 words

I am doing a nearby search with the google places api for a couple of stores, let's say, Victoria's Secret and Ralph's. The second search term is 2 words and so needs some formatting to make it into ...
1
vote
3answers
383 views

How to clear the input bound to the Google Places Autocomplete?

Here is my issue: I am using Google Places Autocomplete to gather information about places from the user. On the event "place_changed", I save this information. However I want to give the user the ...
0
votes
1answer
112 views

Google search place api, places not found

Somes places are not found from google api, It used to return results before the last update but it does not anymore. examples : Pizza hut - france Domino's pizza - france In & out burger - ...
0
votes
1answer
111 views

How to use the photo returned by Google Places Photo API?

I'm calling the Google Places Photo API like so in my Laravel PHP app: public static function getpic ($photoreference){ $app_id = 'XXXYYYZZZ'; $URLToCall = ...
0
votes
2answers
89 views

does google places api return latest five or oldest five or random five reviews?

I am working with google places api. I want to view all reviews of a business in google place. But the documentation says that it only returns an array of five reviews. Now, I want to know is there ...
1
vote
0answers
89 views

Batch Geocoding Places

Is there a batch geocoding tool, similar to BatchGeo.com or GPSVisualizer.com, that can accurately locate place names (possibly one that uses Google Places API)? I'm finding that the Google and ...
3
votes
1answer
150 views

Storing Google Places API data - is it allowed?

I'm creating a website that is essentially a directory of US businesses that fall within a niche category. In order to populate the database, I'm using the Google Places API to gather a list of ...
1
vote
1answer
86 views

Google Places Api get category Id

How I can get place category or category id? Here all categories and subcategories http://support.google.com/places/bin/answer.py?hl=en&topic=1656882&answer=1722104#category But places ...
0
votes
1answer
195 views

Google places API does this violate the TOC? [closed]

I want to have a little search box, where the user can search for a place (using API), then when they select a place e.g "statue of liberty, new york", I want to take them to a detail page I.E ...
0
votes
0answers
92 views

Google places API autocomplete JS library usage limits explained

What exactly are the autocomplete usage limits for the JS Places library https://developers.google.com/maps/documentation/javascript/places#places_autocomplete I know it is around 100,000 for the ...
0
votes
1answer
96 views

Google APIs, maps or places for text search on businesses and parks etc

I would like text search functionality, the thing is I want general places to be searchable as well, (I.E not just businesess), I'd like beaches, parks even cities... Is it possible to do this with ...
0
votes
2answers
109 views

Use oauth2 to retrieve Google Places client_id

Is it possible to retrieve the Google Places client_id using oauth2? I am able to retrieve Google+ information including the id and Google+ profile url, but I need a way to tie the oauth2 user to the ...
3
votes
1answer
247 views

How to tell when google places autocomplete suggestion was not used?

Short version: I'm using google's autocomplete places from the Google Places Library (here https://developers.google.com/maps/documentation/javascript/places) and I need to tell when a user has ...
0
votes
2answers
71 views

Elasticsearch geo_bbox with Google Places API viewport locations

Hopefully I can explain my issue. I am using Google's Autocomplete to get a person destination. Once I have the destination I can use google's place api to look up the geometry viewport. But the ...
0
votes
1answer
166 views

google places API finding place

To use google places API in our Android application, a key is needed. I have got a key now. But I don't know about how do i use it in my application and how to do search for a specific place. Also, ...
1
vote
1answer
378 views

Ho do i use google places to find a place in android

Just now I've purchased Google API Key. I've find the exact place by using google Places. The most important thing is I've to find the place programmatically which means that When I open my ...
0
votes
0answers
84 views

Using Google Places to find location

I want to use Google places to capture my location name in android(not map. Because it didn't capture the streets and villages properly). but i don't know how to use google places in my application. ...
0
votes
1answer
188 views

How can I get the nearest Place (Village Or Street name)

In my application, when the user insert data i want to capture the user's exact place. I've tried so many methods. But none of them shown the exact place. (I meant that they display the country and ...
1
vote
1answer
188 views

rankby=distance in Google Places Android API

I have written some code to search nearby places based on their prominence. Next, I'd like to have my app search places based on ascending distance from the user. In order to do that, I learned that I ...
0
votes
0answers
265 views

RESOLVED: autocomplete.getPlace() returns a 403 error when our API key is used

I'm trying to use autoComplete to fill in customer addresses. However, when on our deployment server autocomplete.getPlace() returns 403. I enter an address, and there are responses When I click an ...
0
votes
1answer
58 views

Google Places API: Nationwide Search based on category

I want to build a database of location coordinates for a particular category (say movie_theatre) for the whole country (say India) and NOT nearby places. Suppose there are 5000 such places. Here is ...
1
vote
1answer
484 views

Google Places API - Adding Places Details

I have the following code: function getLocation() { if (navigator.geolocation) { ...
1
vote
1answer
82 views

Gives empty address when using google places api

I am trying to retrieve the exact address from the given lat/lng using the following url, ...
0
votes
0answers
23 views

Google Places API

I want to create something like this under the link here Who know what I need ? I wan to use google sites and google apps engine Regards
0
votes
1answer
214 views

ParseException: Not well-formed (invalid token) while drawing route in Google map using KML

I am new in google map place api. I want to draw a route between two points. I am using the code(part) for this in complete code. Here I am getting exception. Can anyone help me for this. Why i am ...
1
vote
0answers
51 views

Specify Polygon lat/lon for defining Bounds in Google Places API

As part of a project I am developing a web application which is required to extract POI information using Google Places API. Further, application is also required to filter the above extracted POI's ...
1
vote
1answer
590 views

Google place API for android to find city

I have seen the tutorial( tutorial ) to find the city using autocomplete text view in android.i have done everything that is instructed but now when i hit this url it always throws me an exception ...
1
vote
1answer
41 views

Can i remove some place name which is suggested by Place API?

For e.g. when i select cafe option it give all coffee cafe name and cyber cafe name. I want to remove a cyber cafe name. I am new to android development.
0
votes
1answer
79 views

Nested devise form not linking models

I'm trying to create a new location and a devise user in the same form and link them. The user and the location are created, but the location_id is not saving to the user. There is a location_id ...
1
vote
1answer
1k views

Google Maps Android API v2, Marker title/snippet wrong display

I use Google Maps Android API v2 with Android to show current position with nearby markers. Nearby places locations and titles are received using Google Places API. The problem is that non-english ...
0
votes
1answer
45 views

Is there an OR operator on google place API?

I am using this api call with &keyword= and I want to have multiple words in the keyword but OR them. I have tried OR and | but it seems to ignore it. example here Is it possible to OR keyword ...
0
votes
1answer
268 views

Google places API - 'REQUEST_DENIED' when using server-side proxy on EC2

I'm stuck trying to get an API call to Google Places working. I'm using a server-side PHP proxy for the request - not because I want to, but because it's part of JQuery-POI-Mapper. The server I'm ...
0
votes
1answer
216 views

Google Places API not working in Firefox

I'm totally floored here. I used the Google Places API along with Google Maps Javascript API v3 to display a map of commerces with its address, phone number etc... I developed the website on Webkit... ...
1
vote
0answers
174 views

Google Places API request limit [closed]

So I'm currently working on a app for Android that will use Google Places API with the check in feature. Users will be able to check-in to locations and also see other local users locations via list ...
0
votes
1answer
208 views

Trying to pull data from google places API

Trying to pull the data from Google Places API but can't get it work after reading the documentation. I must be missing something, anyone out there can help? <script> var request = { ...
0
votes
0answers
112 views

Google API Console - Orange Exclamation Point

I created a project in the Google apis Console that enables the Google Maps API V3 and Places API Services. I have provided billing information and verified my email. In the API Access tab, I have ...
0
votes
1answer
130 views

How to add website and address with google places api?

i am writing an application that will allow businesses to do SEO and i am using the google places api to add new place when the client has activated their profile. The api works great, but i am ...
0
votes
1answer
123 views

Google Places API : next_page_token error

I'm gathering information on the location of stores. The search is: <?php ... ...
0
votes
1answer
290 views

Displaying formatted phone number from the google places api in a alert dialog on Android?

I have been using this following tutorial regarding the Google Maps API and Google Places API. http://www.androidhive.info/2012/08/android-working-with-google-places-and-maps-tutorial/ It is very ...
7
votes
2answers
421 views

How to get all places (or specific type of place such as a restaurant) in a city or country with Google Places API?

I am trying to find all "restaurants" or "insurance agencies" for example, in a city or country. Okay, maybe a country is too broad but mainly large cities. I am using the Google Places API and ...
1
vote
0answers
171 views

Google places API is working on emulator but crashing on real device

I have been developing android app and while using google places api, it was working fine. All the expected results are retrieved from HTTP request when i run on emulator. But when i exported it using ...
0
votes
1answer
102 views

Crossdomain Ajax with google places

I have a problem with Google Places API. I tried to send a place to google but i got an 400 Error. var send = { "location": { "lat": 25.696183, "lng": 8.136408 }, ...
0
votes
1answer
281 views

Google Places API Search for Keyword and City

I would like to allow users to search for a keyword + city to return results for that keyword in a city. For example "starbucks Seattle" should return all starbucks in Seattle. However, it doesn't ...
0
votes
1answer
102 views

How to exclude certain types (categories) from google places api search

I want to exclude individual doctor's offices in my results. Most doctor's offices are in the category "doctor" and "health". I DO want to show places of category "health". How can I achieve ...
0
votes
1answer
112 views

Google map API web service from Google Tutorial does not work for me.

I am new to Google Map API , and I just try to search for hospitals near my place using the given URL below from the Google MAP API tutorial. Plus from my Google console, I have Google MAP API ...
0
votes
0answers
140 views

Bad generated Google Maps API Json request generating http 503 error in Java

I am sending a JSON Request like this to Google Maps API from a mobile app: {"host":"maps.google.com","address_language":"en_GB","request_add[0.0] ress":true,"carrier":"vodafone ...
2
votes
0answers
188 views

google places api requests - OVER_QUERY_LIMIT before actually over the limit

I have developed a google places application to get info about places. I have verified my identity with google and as per the limits, I should be allowed up to 100 000 requests per day. However, ...

1 3 4 5 6 7 14