我想要獲取地圖上顯示的地點的更多信息,例如地址,電話號碼等。您可以在此處看到我的代碼:Google Places API - 獲取地址,電話號碼等
http://jsfiddle.net/aboother/4q3jcg1s/
我做了「console_log(地方)」,如下:
function createMarker(place) {
var placeLoc = place.geometry.location;
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location
});
console.log(place);
var request = { reference: place.reference };
service.getDetails(request, function(details, status) {
google.maps.event.addListener(marker, 'click', function() {
console.log(place);
infowindow.setContent(place.name + "<br />" + place.vicinity);
infowindow.open(map, this);
});
});
}
,但我看不到,即使我知道你能得到這個信息,這個對象的地址或電話號碼。我只能看到「附近」,「名稱」和其他基本信息。誰能幫忙?
請編輯你的jsfiddle。由於存在資源錯誤,我們無法看到日誌。 –
嘗試是弗拉德:http://jsfiddle.net/aboother/4q3jcg1s/ – aboother
的小提琴作品,找到了解決辦法發佈不久。 –