如何从Google地方信息/地图获取更多结果

时间:2012-02-03 03:17:21

标签: javascript google-maps-api-3 google-places-api

我正在使用谷歌地图,我正在尝试放置API,但有些东西让我想知道......

如果您加载maps.google.com并前往吉隆坡,然后在搜索框中输入“food”,您将在地图上看到数百家餐馆。我想将这些放入我自己的地图中。

使用Places API,我几乎复制了他们的示例代码:

function initialize() {
    var plat = 3.15;
    var plong = 101.7;
    var ppos = new google.maps.LatLng(plat, plong);
    var mapOptions = {
        mapTypeId: google.maps.MapTypeId.ROADMAP,
        draggable: false,
        zoom: 10,
        center: ppos
    };
    map = new google.maps.Map(document.getElementById("mapcanvas"), mapOptions);
    var request = {
        location: ppos,
        radius: '10000'
    };
    infowindow = new google.maps.InfoWindow();
    service = new google.maps.places.PlacesService(map);
    service.search(request, callback);
}
function callback(results, status) {
    if (status == google.maps.places.PlacesServiceStatus.OK) {
        for (var i = 0; i < results.length; i++) {
            createMarker(results[i]);
        }
    }
}
function createMarker(place) {
    var placeLoc = place.geometry.location;
    var marker = new google.maps.Marker({
        map: map,
        position: place.geometry.location,
        icon: place.icon
    });

    google.maps.event.addListener(marker, 'click', function () {
        infowindow.setContent("<b>" + place.name + "</b><br/>" + place.vicinity);
        infowindow.open(map, this);
    });
}

当我执行此代码时,我确实得到了结果,但只有极少数且只有少数商场和博物馆等主要地点。那么,我如何获得我在Google自己的地图上看到的所有美丽数据?

1 个答案:

答案 0 :(得分:1)

事实证明存在许多问题: Inodesia中的分类已被破坏,因此使用关键字代替解决了问题,如:

var request= { 
  location: ppos, 
  radius: 10000, 
  keyword: 'restaurant' }

关键字采用字符串而不是数组,而radius采用数字而不是字符串。您可以在此处查看请求类型的摘要:http://code.google.com/apis/maps/documentation/javascript/reference.html#PlaceSearchRequest