Questions tagged [google-local-search]
27 questions
12
votes
1 answer
How to use Google Maps to search my own location data (Same functionality as Places search API, but for my own "places")
See related question: google maps custom local search / search control
I know I can create Custom Locations and Information Windows in a Google Map
e.g. http://code.google.com/apis/ajax/playground/#info_windows_sharing_v3
And I understand that Local…

Eran Medan
- 44,555
- 61
- 184
- 276
4
votes
0 answers
Google maps custom local search / search control
I have two questions about google maps local search.
Here is my code:
var options = {
onSearchCompleteCallback:function(searcher) {
// content of onSearchCompleteCallback function
// creates markers and applies addresses to a…

Laurenz
- 110
- 3
- 13
3
votes
2 answers
More than 7 results for Google local search?
Currently I am using the following code:
$zipcode = '91762';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://ajax.googleapis.com/ajax/services/search/local?v=1.0&q=restauraunts+".$zipcode."&rsz=large");
curl_setopt($ch, CURLOPT_HEADER,…

Chuck Burgess
- 11,600
- 5
- 41
- 74
3
votes
1 answer
Google Location API vs. Maps: Why are identical queries yielding different results?
I'm losing some hair over Google's AJAX API currently. What I do is turning structured location data into a Google local search API query in order to give users an alternative result list of…

mxk
- 43,056
- 28
- 105
- 132
2
votes
1 answer
Google Local Search API
couple of quick questions
1) In the local search results - we can get a lot of parameters like street title, address, city, state, lat, long , url etc
- In order for me to uniquely identify this record - can I consider URL to be unique to this…

Gublooo
- 2,550
- 8
- 54
- 91
2
votes
2 answers
Smart ways to determine if a search request is an address or a business for use in Google APIS?
Here is the problem, I have an app with a search bar, the user can input something like "18th Street" or "Starbucks" and it uses the Google Geocoding and Local Search APIs respectively to get results.
I'm wondering is there a smart way to determine…

DevDevDev
- 5,107
- 7
- 55
- 87
2
votes
1 answer
google local search results in XML/JSON format
I would like to issue a local search on Google maps (e.g. list of restaurants for a given location), and I would like to get the (Restaurants data) data back in JSON/XML or other similar format. What's the best way to do it?
Thanks!
user227170
1
vote
0 answers
Google Local Search and Markers
I'm following the code located at this page:
http://code.google.com/apis/ajax/playground/#localsearch_with_markers
the search the demo shows is:
// Execute an initial search
searchControl.execute('pizza');
How can I get it to search more than one…

thindery
- 1,164
- 4
- 23
- 40
1
vote
1 answer
How to get auto complete search location results as GMSPlaces instead of GMSAutocompletePrediction with Google place API in iOS?
Actually, I get the corresponding response as in the form of GMSAutoCompletepredictions for my auto completion location search request with Google API. With the prediction results, we didn't get more detail info like coordinates, formatted detail…

kalai
- 56
- 8
1
vote
1 answer
Forcing google to give "did you mean" options when using maps/localsearch API
I want my application using Google local search and google maps to give my users the ability to choose from a number of locations when there are a number of possible answers to their query. A good example would be "Overton, UK" - there are lots of…

wheresrhys
- 22,558
- 19
- 94
- 162
1
vote
3 answers
How schema markup can be helpful for mobile app website?
I want to implement schema markup for a mobile app website. I read schema.org/MobileApplication, but there are lot of properties. I am not getting which property are useful to give more effective output for local search?

Mike Deon
- 11
- 2
1
vote
1 answer
google local search or maybe some other api
im trying to implement local search api, to retreive data for shops and other things from local search, but on demo it shows me 4 pages of result only and for more, it shows a link to result page, which goes to google website, i was wondering if i…

Basit
- 16,316
- 31
- 93
- 154
1
vote
1 answer
Google Places Library Replacement for google.maps.LocalSearch()
Now that the Google Local Search API has been deprecated, is there a functional equivalent of google.maps.LocalSearch() in the Google Maps JavaScript Places Library? Specifically, I have a map on my website and within the map I placed a LocalSearch…

Phil
- 1,030
- 1
- 16
- 22
1
vote
1 answer
Bing local search listing information?
I read the Bing documentation but can't find a way to query Bing for local listing information such as name, address, phone, website, claimed or not, number of reviews and some snippets, and images associated with the listing if any, etc. Is there…

user755806
- 6,565
- 27
- 106
- 153
0
votes
2 answers
Google Local Search API + Python
I am trying to crate a program (in python) that will output query Google’s Local Search and print results to the console. I want to be able to search for “café in London” and get the company names addresses and phone number printed on screen.
I…