我正在构建一个Instagram地图应用程序,我正在尝试使用$ .each迭代返回的JSON。我目前正在测试它,将图片的坐标返回到<div>
。它工作得非常好,除了相同的数据显示两次。这是声明(注释掉的代码用于将其放在地图上):
$.each(photos.data, function (index, photo) {
if (photo.location) {
/* var photocoords = google.maps.LatLng(photo.location.latitude,location.longitude);
var marker = new google.maps.Marker({
position: photocoords,
map: map,
title: 'Test'
});//end new marker
*/
photo = photo.location.latitude + ' , ' + photo.location.longitude + '<br>';
$('#photos-wrap').append(photo);
} //end if
else {
return true
}
});
它返回的数据:
38.9232268 , -77.0464289
35.046506242 , -90.025382579
35.189142533 , -101.987259233
38.9232268 , -77.0464289
35.046506242 , -90.025382579
35.189142533 , -101.987259233
感谢您提供的任何帮助。
答案 0 :(得分:0)
将您的代码更改为此
var new_photo = photo.location.latitude + ' , ' + photo.location.longitude + '<br>';
$('#photos-wrap').append(new_photo);