仅从Google Search API检索坐标

时间:2010-05-11 07:22:56

标签: google-maps google-api google-search google-search-api

是否可以在没有Google API地图的情况下完成此操作?我到处搜索,找不到任何帮助。

1 个答案:

答案 0 :(得分:0)

当然可以。这个Google示例展示了他们的一些技巧 http://www.google.com/uds/samples/random/lead.html

或者,使用我的代码摘录

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

和回调

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);
        }
    }
}

一般信息,我相信你已经看过了:
http://code.google.com/apis/ajaxsearch/documentation/

Braveyard 在他的问题中也提供了工作实例
Disable Highlighting in Google API WebSearch Result Title