https://i.stack.imgur.com/9Pha0.png
This is the part of my JSON. I need to access photo_file_url
I tried to write it as
$.ajax( {
url: "http://www.panoramio.com/map/get_panoramas.php?set=public&from=0&to=1&minx="+longitude+"&miny="+latitude+"&maxx="+lonmax+"&maxy="+latmax+"&size=original&mapfilter=true",
type: "get",
success: function(response) {
document.getElementById("back").innerHTML = response.photos.photo_file_url;
}
});
but it doesn't work