我正在使用谷歌地图API来确定一个Google兴趣点的建筑物(地点)。我正在尝试获取地点参考以供将来使用。但由于API限制或任何限制。我无法得到确切的地方。以下纬度经度属于“悉尼大学”。使用这个代码,我可以得到悉尼大学,但作为第二个结果,我也尝试了很多lat长,但有时适当的结果出现在最后或第一。这些地方对Google地方信息搜索系统非常重要。这个请求的半径对我来说很蹩脚。有没有办法找回确切的地方?
var pyrmont = new google.maps.LatLng(-33.88858402464521, 151.18735671043396);
map = new google.maps.Map(document.getElementById('map-canvas'), {
center: pyrmont,
zoom: 15
});
var request = {
location: pyrmont,
radius: 1,
};
infowindow = new google.maps.InfoWindow();
var service = new google.maps.places.PlacesService(map);
service.nearbySearch(request, callback);
}
高级谢谢