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.
12
votes
4answers
18k views
Show Current Location and Nearby Places and Route between two places using Google Maps API in Android
I need to develop an application using Google Maps in Android to locate my current location and need to find nearest location.
(For example: Nearby police station from my current location.)
It ...
5
votes
1answer
5k views
Turn AutoCompleteTextView into a SearchView in ActionBar instead
I have a AutoCompleteTextView which gives user auto-completion search result from Google Places API. Once I was done I discovered SearchView and how it can be placed in the ActionBar. I checked out ...
3
votes
1answer
462 views
Search all places in given city name
Right now i am using Google Places API for fetching Restaurant list in particular city, query like
...
0
votes
0answers
115 views
How to fetch Review and Ratings from Google+ Local [duplicate]
Possible Duplicate:
How to display google+ local reviews and ratings of a particular business on my website
I am developing an application like http://www.reputation.com/ User have to input ...
0
votes
1answer
1k views
More than 20 results by pagination with Google Places API
Google's demo has this snippet to capture, by pagination, more than 20 results from place search:
service.nearbySearch(request, resultList, function(status, results, pagination) {
if (status ...
0
votes
1answer
252 views
Google Places Api subway and train station search in Russia stopped working
Till today the following query:
...
0
votes
5answers
4k views
How to get 20+ result from Google Places API?
I am developing a app in which i am getting the list of ATM's near by the user. For that i am using Google Places API, but every time it returns 20 result only. I want to get more results. In the API ...
0
votes
2answers
6k views
Querying Google Places API using jQuery
Google Places API is now generally available. I am trying to use the .ajax() call in jQuery to make a call to Google Places. The error I keep getting back is Uncaught SyntaxError: Unexpected token :
...
2
votes
1answer
523 views
Google Places API request denied for Android autocomplete, even with the right api key
I'm trying to make an Autocomplete field which should fetch cities as the user types, by using the Google Places API as described in this tutorial:
...
0
votes
2answers
371 views
How to get Distance Kilometer in android?
I am very new to Google maps I want calculate the distance between two places in android.
For that I get the two places lat and lag positions for that I write the following code:
private double ...
0
votes
0answers
1k views
How to display google+ local reviews and ratings of a particular business on my website [closed]
I want to show the google+ local reviews and ratings of some places(hotel/restaurants/business etc) on my website.
I have some google apis but i am not getting review and ratings as an output. I have ...
0
votes
2answers
2k views
Trying to use Google Places API with JQuery's getJSON function
This is probably very basic but I'm trying to test the Google Places API. I'm going through the documentation and using some of the examples they provide. I'm trying to use the JQuery getJSON function ...
10
votes
2answers
7k views
Detect the nearest transit stop from the given location
I need to get all the nearby public transit information within certain distance from a given location. The type of public transit can be either bus, train, etc..
Here is what I meant:
If I use ...
7
votes
3answers
2k views
Google Places API - find an address using the city
I am planning to use Google Places API in order to create an address autocomplete in my web site. My question is about whether my requirements are possible using Google Places.
I have a "Post ...
6
votes
2answers
797 views
Google place Api PlaceDetails Photo Reference
I am using Google Place Api where is on some results "photo_reference" (similar to "reference") value. I cannot find any mention about that how to use it to get that photo. I know how to use ...
1
vote
2answers
923 views
Parsing Google Places JSON data in Android?
I'm trying to parse Google Places JSON data in Android. I know the URL I'm passing in works (but I took my key out of the below code). I can get the JSON data to display in a TextView, but now I want ...
1
vote
3answers
676 views
REQUEST_DENIED Google Maps API v3 Places Error
I am trying to use Google Places in Google Maps API v3, but I get the following error: REQUEST_DENIED. My URI is: ...
0
votes
1answer
67 views
How to connect the text view to a website?
Hi i am new to android and i have created a app which uses the google places api and lists a few department stores.
I have made the list clickable upon clicking the name of the department store i am ...
0
votes
1answer
410 views
Google Places API not returning any results for India
https://maps.googleapis.com/maps/api/place/search/json?location=28.635704,77.224982&radius=50000&types=restaurant&language=en&name=&sensor=false&key=[key]
I have been trying ...
4
votes
1answer
1k views
Google Places API : Page Token Errors
I'm basically querying the google places API for stores in atlanta.
...
0
votes
1answer
393 views
find Distance in kilometers in Android using google places Api
I want display the two places distance in kilometers for that I write the following code:
hyd(17.38,78.48) eluru(16.7,81.1)
private String getDistance(double lat1, double lat2, double lon1, double ...
0
votes
1answer
599 views
google-api-java-client library not working in android
I am trying to use Google's places API. I downloaded google-api-java-client-1.6.0-beta.zip library and I'm using source code from https://github.com/tuthan/Google-Place-Api-Demo
I import the ...
4
votes
1answer
1k views
Dalvik VM error: Exception found “Javax.xml.namespace.QName.class”
This isn't intended to be a question. Rather, an observation which is a common problem found in Android when you use external APIs for development and android.jar isn't duplicated into your project!
...
12
votes
1answer
3k views
What is the `sensor` parameter in Google Places API good for?
The Google Places API requests have required sensor parameter? How this parameter affects the results?
6
votes
3answers
5k views
How to get a picture of a place from google maps or places API
I'm using Google Places API to retrieve data about places, but couldn't find how to get a picture of that place, Google Places API just provides icon which is not the same. I need the photo you get ...
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 ...
3
votes
1answer
910 views
How to send a Google Places Search Request with Java
I need to search Goolge Places Pages by long/lat for any banks in the area of 20m.
This Google Places Doc describes how to do it with JavaScript. They are using a google.maps.LatLng Object that i ...
2
votes
1answer
2k views
Google places API: from CID to reference?
My objective: populate a database with known business places in order to generate maps with those places. I insist on "known places", because my users will only search for the places that are in the ...
1
vote
2answers
204 views
Locations uploaded to Places not appearing in Query
I am using Google Places API to store points at Google site. In short, i developed a simple set of Java Classes that would make use of JSON and my Google API Key to post it. I recvd success message ...
1
vote
1answer
778 views
The query limit on the Places API web service is different from the JS limit
I was developing an application which uses the places API through the Javascript Library (https://developers.google.com/maps/documentation/javascript/places), and although I was making hundreds of ...
1
vote
2answers
283 views
Unable to use the table #2 types with Google Places API
I am unable to get any results with the Places API when I use a types=transit_station|neighborhood (or any other type included in the table 2 here: ...
0
votes
4answers
702 views
Google Places API: Searching for names containing spaces
Is it possible to search for names containing spaces?
name: ['Burger King|Subway'] //fails
name: ['McDonald|Subway|Chipotle'] // works
...
0
votes
1answer
289 views
A Missing Data Issue in Google Places API
I'm having a missing data problem in Google Places API! As seen in the example below, the Google Place additional info like mobile number, alternate phone, fax phone, are shown in the Google Map ...
7
votes
2answers
408 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 ...
4
votes
2answers
1k views
How to make HTTPS requests with serverside javascript using Worklight?
I'm toying around with IBM worklight, and am trying to create an adapter to feed some data in from the Google places API.
I want to call this URL :
...
2
votes
2answers
2k views
How can I restrict the Google Maps Places Library's Autocomplete to suggestions of only one city's places?
I am currently using the given code, but this only restricts suggestions to one country.
I have seen one implementation but its using jQuery and I want to do it without using jQuery.
var input = ...
2
votes
0answers
209 views
Google Places returns wrong city
I am building an application using google autocomplete Places API.
If I use the predictive suggestion for the address "Pongal, New York, NY, United States", I get following items in the return place ...
2
votes
3answers
806 views
Getting JSON file from Google Places API
I am trying to use the Places API and I was initially trying to use $.ajax from jQuery but I kept getting an unexpected token error on the first element of the file. But I realized then that you can't ...
2
votes
1answer
3k views
Google Places API - Places detail request undefined
I'm trying to retrieve place details using the Google Places Library. When you click the place marker I want to be able to see the address, name, website etc.
I'm using the following tutorial:
...
1
vote
0answers
127 views
how to use google places auto-complete for wp7
Am developing a simple app in that i need to get places auto-complete when user typing some city name
how to use this
or any another apis, solutions to achive this
thnaks in advance
1
vote
1answer
368 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 ...
1
vote
3answers
145 views
how do i figure out how to debug this? HttpResponse
I'm trying to make a json object from the result of the googleplaces api. But one line of code is causing me alot of problems. My question is how the heck do i find what the issue is. I can't seem ...
1
vote
1answer
246 views
Google place API pricing and queries uplift request
Regarding the usage of Google Place API, Google allows 1000 queries per 24 hour for this Place API, and 100,000 queries per 24 hour if the account is verified with a credit card. Exceeding 100,000 ...
1
vote
1answer
317 views
Google places autocomplete - limit number of results
I there any way to display fewer results than 5 (default) in google places autocomplete?
1
vote
2answers
854 views
How do i find distance between one place to another using Geolocation or Similiar API without embedding a Google Map?
I am having a list of tourist locations with me and i am willing to write a service that could tell me which tourist location is nearest to me and then second nearest and likewise without using a map. ...
1
vote
1answer
520 views
Google places autocomplete - location and radius not working
Im trying to set the google places autocomplete to sort the results from the nearest to a point. I have a code like this...
var defaultPlace = new google.maps.LatLng(49.227463, 16.546097);
var ...
1
vote
0answers
2k views
Google Maps Address Components Geocoding vs Places API - Short vs Long Name
Hey there GMaps API developers. To start - what an incredible product and service the Google Maps/JS API v3 is - thank you so much! Now, with that important bit of sincere gratitude out of the way...
...
1
vote
1answer
1k views
Is there a way to restrict the Google Places Autocomplete to search a city's streets?
Can I restrict the search to a city's streets when using the Google Places Autocomplete?
1
vote
3answers
1k views
What is the proper way to use the radius parameter in the Google Places API?
I am using the Google Places API to retrieve all the POI (Places of Interest) around a the current location, it works ok but I have noticed that whatever the value of the radius is, I always get the ...
1
vote
0answers
955 views
OVER_QUERY_LIMIT in a loop
I'm getting the OVER_QUERY_LIMIT status code when using the Google Places Javascript Library. I have billing enabled on my account so it's not that I'm actually hitting the limit on the number of ...

