目前我正在使用Instagram API和查询位置。 JSON数组为我提供了20个具有经度,纬度和位置名称的对象。
我目前有一个拥有MapBox的JSP。我希望将所有20个对象放在MapBox中作为标记。 我现在遇到的麻烦是如何将我的JSON数组传递给我的JSP,以便我的JSP可以使用它。
的index.html
$.ajax({
url: 'https://api.instagram.com/v1/locations/search?lat=48.858844&lng=2.294351&access_token=' + token,
dataType: 'jsonp',
type: 'GET',
success: function(data) {
//Pass object and load JSP Page
},
error: function(data){
console.log(data); // send the error notifications to console
}
location.jsp
我希望得到以下内容。但我不知道如何从JSP
访问JSON数组foreach(var data in jsonArray)
{
var marker = L.marker([data.Longitude, data.Latitude]).addTo(map);
}