我有以下 javascript:
function callback(results, status) {
if (status == google.maps.places.PlacesServiceStatus.OK) {
for (var i = 0; i < results.length; i++) {
place = new Object ({
name: results[i].name,
photo: results[i].photos[0].getUrl({'maxWidth': 100, 'maxHeight': 100}),
loc: results[i].geometry.location,
rating: results[i].rating,
})
places.push(place);
var marker = new google.maps.Marker({
map: map,
position: results[i].geometry.location,
id: i,
visible: false,
});
markers.push(marker);
}
}
newresult();
}
如果我注释掉以下行,函数 newresult() 将运行:
photo: results[i].photos[0].getUrl({'maxWidth': 100, 'maxHeight': 100}),
但是,就像上面的代码一样,如果我不将它注释掉,函数 newresult() 将不会运行。我知道 photo 的 getUrl 函数可以工作,因为它返回一个有效的 url。
谢谢你的帮助。