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
0answers
35 views

How do I get unique results from the Google Places API?

Our UI allows users to type in their addresses, these are in turn checked against the Google places API. Is it possible to restrict the results to a single unique result if the user has typed in a ...
0
votes
1answer
47 views

Autocomplete does not find place with '!'

I am using autocomplete and I notice that a place called Play! (in 170 State St. Los Altos CA) is not returned in the autocomplete results. I can find the place in google places so I know it exists: ...
0
votes
0answers
24 views

Google Places: link to Info Window Marker

When people click on an image on my page, I want that a info window pops up on the google map. With other words, how can I address/identify an info window of a marker? I've already placed the markers, ...
0
votes
2answers
62 views

How to make script recursive

I was wondering if anyone could help me fine tune my script. I have what I need but I'm just trying to figure out how to make it recursive. e.g. I currently have: $key = 'XXXXXXXXXXXX'; $sensor ...
0
votes
1answer
224 views

Places Autocomplete API to get GPS coordinates from address entered

I have an address field in my app where the user needs to enter the required address. I have used google Geocoder to get the GPS coordinates of the address . But now I want to make it easier for the ...
1
vote
0answers
94 views

Google places autocomplete with Selenium IDE test

I'm trying to make test in Selenium IDE (from Firefox addon) for autocomplete place (given from google places). I need type in input place name and get the first location. Sequence for place ...
0
votes
1answer
83 views

Javascript events firing in undesired order

The problem: mouseout event fires too early and causes the infobox to stay open when the user drags their mouse over the marker too fast. In other words... If the user quickly moves in and out of the ...
0
votes
0answers
35 views

Places Api (Many) results missing for a query with type parameter

I've been using places api in an android project. At some locations in the outskirts of a city, results/places are missing. The general structure of my API URL is : ...
0
votes
2answers
135 views

NoClassDefFoundError showing in logcat while running android project

I got an error while working with android map oriented example project. when i run this program it shows a NoClassDefFoundError in log-cat.I couldn't find any error in this program can any one please ...
0
votes
3answers
331 views

Google places Api Key

I have searched through here for other questions related to the same topic and cannot find a definite answer. My problem seems the same as many others in that I cannot get a response from Google ...
0
votes
2answers
133 views

How to get Google Places API to return results with two or more keywords?

I am trying to query Google Places API, passing it an origin location and a radius and some keywords. This used to work! Only recently I noticed that the quality of results got a lot worse and from my ...
0
votes
1answer
205 views

Error with URLConnection

I was just trying to get a feel of the JacksonJson library. For that, I was trying to get JSON data from the Places API into a String. My key is valid (I tested in browser, and in another app), but ...
0
votes
2answers
67 views

TextSearch for multiple locations

I have a list of store names that I want to do a textsearch on and find their locations. All I have is the name of the stores. I want to do a single search for all the names at the same time, is the ...
0
votes
1answer
119 views

Searching nearest geo objects by google places api

I need to write a small program which make searching of some category of objects (airports for example) near some geo point. But places API have the limit for the radius length of 50 000 meters. So it ...
0
votes
1answer
391 views

Implementing Google Places API with updated Google maps v2

Over the past few days, I am trying to find a step - by - step tutorial to implement google places with the updated version of google maps (in eclipse for Android) with no success. In the old ...
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
792 views

How to pass the latitude and longitude of a place to be displayed on google map?

Hi I have developed an android app which uses google places api to display the nearby locations. Now when I click on a place name I want to display its location in the map. My question is that how to ...
0
votes
0answers
39 views

Google Places API: iOS key: Request Denied [duplicate]

I'm attempting to query the google places api from an iOS app. From the google api console I've enabled the Places API in the Services section, and created an iOS key in addition to the default ...
0
votes
0answers
282 views

Can't get google maps to show behind Google Places in my app (only grid)

I have this code from the tutorial Android Working with Google Places and Maps, and I want to change it, because I need it to work with google maps v2. The problem is that instead of the map, I only ...
0
votes
0answers
68 views

How to get the location from google places without using GPS?

Hi I want to develop an app which uses google places api to get the nearby locations. My requirement is that I don't want to use GPS but only internet. Can this be done because all the tutorials ...
-1
votes
1answer
100 views

GPS not displaying places

Hi i have developed an app which uses google places api to display a list of places the problem is that it uses both gps and internet to display the places. Now my problem is that when i run the app ...
-1
votes
1answer
25 views

Get reviews from user

Any way to get a given amount of Places reviews made by a single Google+ user? Google+ APIs don't seem to have such feature, did I miss such feature in Places API?
0
votes
0answers
126 views

How I display photo from google place api using geturl()?

function createPhotoMarker(place) { var photos = place.photos; if (!photos) { return; } var marker = new google.maps.Marker({ map: map, position: place.geometry.location, ...
4
votes
1answer
144 views

How to get all the department stores present in a city in android using google places?

Hi I have developed an app which uses google-places API to get the list of nearby department stores. This works perfectly and I am using this tutorial to get the places, but now I need to add one more ...
0
votes
0answers
44 views

What is the Google places algorith for returning(or not) the opening hours of a business

While the specification says Google does guarantee that all detail responses will contain all properties, is there a way or general rule used to determine if opening_hours will be returned? Many ...
0
votes
1answer
272 views

Triggering Google Places Autocomplete Places places changed when text input same value of one of the selections

I'm using the Google Places Autcomplete API and jQuery. It's basic functionality is working fine. What I would like to do is if someone types something into the autocomplete that is exactly the same ...
0
votes
1answer
91 views

Google Places REST call returning 404 not found

I would like to search google places based using a REST call. I am trying the following URL format as per Googles documentation, but I"m getting a 404 not found. Can anyone suggest the proper format ...
0
votes
2answers
393 views

jQuery Validate Address - Google Places API

I have a simple form where the user enters an address. Before the form is submitted I perform a TextSearch using the Places Api and put this data into a hidden input field in the form, and then ...
0
votes
2answers
195 views

Google Places AutocompleteService filtering by country

I'm setting up a custom autocomplete field where I show locations from Google Places and events from my database that match the search query. For this reason, I'm using the Google Places Autocomplete ...
2
votes
1answer
534 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
127 views

Google Places Autocomplete Force Selection

I am using the JavaScript Google places autocomplete API v3. It works fine but I was wondering if there was a way to force the selection from the autocomplete, that is input that will not accept any ...
-5
votes
3answers
95 views

echo the results of print_r using PHP [closed]

Can someone teach me how to echo the results of this PHP array? Sorry but I’m just a beginner so I don’t know how to echo the results by print_r. Thanks in advance. Here is the test result. Array ( ...
0
votes
2answers
98 views

How to get photos in certain radius from location in Android?

I have an location coordinates. I have a radius (5 km, for example) around this location. How to get google maps photos (images, description/comments for photo, coordinates)?
0
votes
0answers
149 views

Showing infowindow's on Google Places Searchbox API

Here is my code, I can't figure out how to display the info windows. If someone types schools in the searchbox, the school icons appear but can't be clicked. I want them to be clickable and for them ...
3
votes
0answers
530 views

Google Places Autocomplete - Pick first result on Enter key?

I'm using a Google Places Autocomplete and I simply want it to select the top item in the results list when the enter key is pressed in the form field and suggestions exist. I know this has been ...
1
vote
1answer
376 views

Searching for locations with Google Maps API for Android

I am making an Android app that stores 3 million city markers in MongoDB. Depending on the current google map view, I make a geospatial box query to Mongo to get all markers within the current view on ...
0
votes
0answers
23 views

Removing Google Places “Markers” of a specific Google Places “Type”

I'm getting some Google Places Types ['school'], ['hospital'] from Google Places API. The places were displayed without problems at the map 1 - When the user click the checkbox chkSchool ...
0
votes
0answers
37 views

How to show Check-in suggestion using Places API [closed]

I'm about to start my first project (mobile app) using Google Places API and I want to notify my users whenever they are near to my store, so I was wondering how does Google maps knows when I'm near ...
0
votes
1answer
122 views

Adding location detail to Google Places via JSON

I am adding locations to my Android application which is utilizing the Google Places API and when I run a search for these places I am getting the Name, latitude and longitude back but I am unable to ...
2
votes
2answers
45 views

How to pass the value got from google places api to another activity? [closed]

Hi i have developed an app using google places api. It displays the nearby department stores. Now i need to pass the name of the store to another activity when i click on it. Can anyone tell me how ...
0
votes
0answers
167 views

Value from mysql database not displaying [closed]

Hi i have developed an app which uses google places api to display the nearby stores. Now when the user clicks on the name of the store i am connecting to my database to display the products ...
0
votes
0answers
31 views

Places API missing tag Android

I'm using the Google places api and I am trying to parse the XML data to get a number of things including the rating. The only problem is that sometimes there isn't a rating tag ( shown below). How ...
1
vote
1answer
80 views

Places Autocomplete always returns Chicago resultas even If lat long is set to other place

I'm using Google places API to check the places nearby and let the user pick one. Everything works fine but I'm having location issues, If I send the longitude and latitude to the api call for a ...
1
vote
0answers
49 views

How to check the number of places returned by google places api?

Hi i have developed an android app using google places api. Now i want to count the number of places returned by the google places api so as to assign a unique id to each of them using which i access ...
0
votes
1answer
91 views

Maps api android key for places api not work

Google maps api for android v2 work with key i created using sha1, but when i put this key in the google places api search string my result is ACCESS DENIED. Also in the google apis console report i ...
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
0answers
42 views

How to make the address got from google places api clickable? [duplicate]

Possible Duplicate: How to connect the text view to a website? Hi i have developed an app which uses google places api to display a list of department stores near the users location. Now i ...
0
votes
0answers
25 views

How to get the recommended products in a store got using google places api?

Hi i am new to android and i have developed an app which uses google places api to display the department stores located near the user. Now i want to use that list to display the recommended or ...
0
votes
2answers
92 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 ...

1 2 3 4 5 14