0
votes
0answers
14 views

Reset value in search text box of google places api

I want to reset the value of the search text box to just display street number after user selects the address from the auto-complete list.For Example if user selects the address "14 Caroline Street, ...
0
votes
0answers
13 views

Google Autocomplete API get cities and neighborhoods

Is there any way, with the Google Places Autocomplete API to get cities and neighborhoods? I know I can get them by using types=geocode, but that returns a bunch of extra stuff I do not want. I am ...
0
votes
0answers
46 views

google maps api places autocomplete getPlace() not working

I have problem with google maps api places autocomplete. It seems that function getPlaces() not working as described in documentation: Autocomplete Returns the details of the Place selected by ...
1
vote
0answers
19 views

Google maps/places API search by phone

We have a signup page where the user enters his business phone number. We want to find his business information from the phone number for verification. How can this be done with Google places/maps ...
0
votes
0answers
23 views

Google Places Javascript v3 api - Formatted_Phone_number

I have created a Google map that displays and numbers locations. It seems to grab the formatted phone number I must grab the reference of each location and send another getDetails request. The problem ...
-4
votes
0answers
234 views

Search restaurants near my position and restaurant near a location via search bar

How can I show restaurants near my current position and the restaurant near a place when I search a location in a search bar via Google Maps and Google Place API? I am using Titanium with HTML and ...
0
votes
0answers
57 views

How use a “my places” (Google) map and geolocation together to find my position on a trail with HTML

I have made a hand drawn trail using "my places" in Google Maps. I would like to use that trail map in a mobile web app and have the user be able to find their position on that trail map. I have ...
2
votes
1answer
119 views

Google Places Autocomplete on dynamic inputs

Good day. I'm trying to add Google Places Autocomplete on dynamically created inputs using code below: <html> <head> <script ...
0
votes
1answer
77 views

Dynamically set bounds on nearbySearch based on search critieria

We've implemented a search box and google maps on our page to allow customers to perform searches based on places queries, and so far it's working well. However, using TextSearch we almost always get ...
-2
votes
2answers
86 views

ZERO-RESULT when passing lat-long of USA in place api

Google place API : friends, Is anyone know what is the lat long for USA to add in Google place API, as I want to get all the addresses of McDonald's(or any other business) of entire USA for that I ...
0
votes
0answers
16 views

What does nextDate under opening_hours.periods.open/close.nextDate returned by Google Places API mean?

The Place Details that is returned by a query to Google Places API returns among other things opening_hours for a place. Under opening_hours>periods>open/close there is a key called nextDate which is ...
-1
votes
1answer
193 views

How to use google maps api library (codeigniter) to show own factories on map?

How do i specify own places? i'm working on a website where people can search factories in a specific radius using their own postal code. Now i would like to add those factories so that people can ...
2
votes
0answers
153 views

How to find places along the route using google map api?

If you are getting the route using google.maps.DirectionsService() (say from e.g: Reims to Paris). Now, how can we get all places (say if searching hotels, restaurants or gas stations) which can be ...
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
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 ...
0
votes
1answer
129 views

Get place from Google Places API using ID

I can get place details from Google places API when I know the reference by using: ...
0
votes
1answer
68 views

How do I get Google Maps directions to recognize establishment from the Places API?

I am trying to show directions between 2 'establishment' search results from the Places API, but what is the best way to pass these locations into directions? When I use the Places library and get ...
-1
votes
1answer
25 views

How can I geocode domain names? [closed]

I have a list of domain names, (undp.org, gu.se, etc) that I want to geocode. Is there a way to do this using the Google maps api? I saw that in Places you can retrieve an establishment's website, ...
0
votes
0answers
21 views

Is it possible to get information about lines going though a certain subway station using a google api?

On a click on a subway station icon from New York (probably from other places, too), a "Subway services" information pop-up shows subway lines going trough that station. Is this information publicly ...
0
votes
0answers
129 views

Could not find class 'com.google.api.client.http.javanet.NetHttpTransport

Im making an android app that has map function, and in the map function I use the google api place to get the information about the the local service, but when i run the app. it gave me the errors as ...
0
votes
2answers
37 views

Load a map with specific places acount as a reference without iframe?

Is there a way to load a map using js, but show the reference location as an actual places listing? I'd like to load a map that shows a particular business (I have the places reference number) then ...
0
votes
0answers
63 views

Google Places API - At times it does not return results and at times it returns results

I am developing a functionality where in I am using google places API.Code is working fine and at times I get results and at times I do not.Not sure as why this is happening.Few queries for which I ...
1
vote
1answer
96 views

Google Places Autocomplete: rectangular bounds vs radius

We are using the Javascript API v3 and I want to add a radius to get more local results. But I can't get it to work. The docs say to use radius with the Google Places API but use a rectangular ...
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
2answers
66 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
0answers
125 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
141 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
2answers
382 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
0answers
146 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
513 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 ...
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 ...
1
vote
3answers
351 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
179 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
2answers
108 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
235 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
70 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
0answers
257 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 ...
1
vote
1answer
456 views

Google Places API - Adding Places Details

I have the following code: function getLocation() { if (navigator.geolocation) { ...
1
vote
1answer
81 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
1answer
210 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... ...
0
votes
0answers
110 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
0answers
139 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 ...
0
votes
1answer
300 views

google places autocomplete restrict to particular area

My requirement is to get google places autocomplete suggestion only for Bangalore places, but I am not getting places only for Bangalore or within mention latitude longitude. I want to retireve only ...
0
votes
0answers
153 views

Set anchor point for infowindow onclick of Places API results table

I am attempting to get the infowindow to open correctly in Google Earth Plugin with integration with Google Maps V3 and the Places API. I have a previous question which will show some of the code and ...
-4
votes
1answer
96 views

Google Map Autocomplete: how to know when suggestion is selected? [closed]

I'm using https://developers.google.com/maps/documentation/javascript/places#places_autocomplete. Is there a way to know when a user selects an item in the suggestion list? Any events triggered?
2
votes
1answer
460 views

Google map api autocomplete restricted/bias to street address in my town

I am trying to write a web application for my final year project at uni, and one of the first problems i need to tackle is getting an auto complete text box for local address input. i have spent some ...
2
votes
1answer
112 views

How to highlight Google Places items in Google Maps API

Iv noticed that the rendered map is already marked by piously plotted places, I assumes its those plated by people via the regular Google Places business listing website but these places are faintly ...
1
vote
1answer
105 views

Google Places Autocomplete - how to remove permanently closed places?

I'm using the Google Maps JavaScript API v3 autocomplete library, and I've noticed it returns places that are permanently closed (which is not useful for my users). I know they're permanently closed ...
0
votes
2answers
239 views

How to generate url link to google map from nearbySearch() results?

With the example below, https://google-developers.appspot.com/maps/documentation/javascript/examples/place-search By using nearbySearch one of the place return is "John St Square Supermarket". How ...
0
votes
1answer
148 views

adding google places that will show in google map

I have a problem adding the google places with the google place api. When adding places manually with the url http://www.google.com/places its successfully added and the verification PIN is also ...

1 2 3