is it possible to do that out without a Google API map? I searched everywhere and could not find any help for it.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Certainly. This Google example shows some of their tricks.
http://www.google.com/uds/samples/random/lead.html

Or, using excerpt from my code

var ls = new google.search.LocalSearch();
ls.setCenterPoint('New York');
ls.setSearchCompleteCallback(this, processResults, [ls]);
ls.execute('Barnes & Noble');

and callback

processResults: function(searcher) {
    if (searcher.results && searcher.results.length > 0) {
        for (var i = 0; i < searcher.results.length; i++) {
            var result = searcher.results[i];
            alert(result.lat + '  ' + result.lng);
        }
    }
}

General information, I'm sure you've already seen this:
http://code.google.com/apis/ajaxsearch/documentation/

Braveyard in his question also provided working example
http://stackoverflow.com/questions/2384719/disable-highlighting-in-google-api-websearch-result-title

link|improve this answer
thanks for the help :) i solved this using another method the other day already :D – cheesebunz Jul 2 '10 at 6:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.