var str = "";
$.ajax({
dataType: 'json',
type: 'GET',
url: 'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=40.720032,-73.988354&radius=10000&type=bars&keyword=bar&key=KEY-HERE,
success: function(data){
for(var dt in data.results){
$('ul').append('<li>'+data.results[dt].name+'</li>');
$.ajax({
dataType: 'json',
type: 'GET',
url: 'https://maps.googleapis.com/maps/api/place/details/json?placeid='+data.results[dt].place_id+'&key=KEY-HERE',
success: function(data1){
for(var i = 0; i < data1.result.reviews.length; i++){
if(data1.result.reviews){
str = data1.result.reviews[i].rating;
$('ul').append('<span>'+str+'</span><li>'+data1.result.reviews[i].author_name+'</li>');
}
}
$.ajax({
dataType: 'json',
type: 'GET',
url: 'https://maps.googleapis.com/maps/api/streetview?size=600x300&location=40.7484,-73.9857&heading=151.78&pitch=-0.76&key=KEY-HERE',
success: function(data2){
var attributions = $("#attributions");
var service = new google.maps.places.PlacesService(attributions);
service.getDetails(data1.results[0].place_id, function(place, status) {
if (status === google.maps.places.PlacesServiceStatus.OK) {
var src = 'https://maps.googleapis.com/maps/api/streetview?size=600x300&location=40.7484,-73.9857&heading=151.78&pitch=-0.76&key=KEY-HERE';
return $("#image").attr('src', sr);
}
})
}
})
он отвечает кодом состояния 200 в моей консоли, но не показывает изображения в моем браузере, он также дает мне одну фотографию для местоположения, но должен отвечать разными фотографиями для места проведения