Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
424 views

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, ...
3
votes
1answer
2k views

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 places. ...
2
votes
1answer
2k views

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 ...
1
vote
1answer
410 views

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 ...
1
vote
1answer
326 views

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 ...
1
vote
1answer
803 views

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. ...
0
votes
2answers
46 views

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 ...
0
votes
1answer
59 views

How to get markers coordinates from GMAP into a Drupal CCK field?

I'd like to implement a GMAP into a Drupal 6 CCK form. I already have the GMAP module installed, and what I'd like to have is a CCK field in which coordinates from selected markers from GMAP are ...
0
votes
0answers
61 views

Yahoo local search API question

I'm using Yahoo local search in my application. I'm trying to figure out how does zoom/radius feature work...I couldn't find much explanation on the yahoo developer network... the question is what is ...
0
votes
0answers
73 views

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 ...
0
votes
0answers
51 views

Javascript: Google Local Search boundaries

Following the local search example at: http://code.google.com/apis/ajax/playground/?exp=maps#the_hello_world_of_local_search I built this page that reads the user's coordinates and lists local ...
0
votes
0answers
212 views

GMap local Search API, get more result pages

i´ve searched for hours now and found nothing useful for me. Just something similiar wich i wasnt able to adept to my project. Here is my problem. I made a map with the google maps api, where the user ...
0
votes
2answers
118 views

How long does it take for google to find and add citations to local pages?

So I've been helping a friend update a listing of a local small business on google and also get the business listed in around 20 additional places that Google seems to like to use for reference in the ...
0
votes
1answer
158 views

google map local search, how to search address, local from a specific country only?

Hi, I'm using google map local search api and I'm trying to search and get result from a specific country only. Wonder If anyone have experience about this.
0
votes
1answer
249 views

NSURLErrorBadURL error

My iphone app called Google Local Search(non javascript version) to behave some search business. Below is my code to form a url: NSString *url = [NSString ...
0
votes
2answers
92 views

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. ...