我想从json数据中获取chield坐标数据。
我使用了这段代码但是我收到了错误。
https://mxa.codeplex.com/releases/view/618279
http://stackoverflow.com/questions/12849107/how-to-install-the-xna-game-studio-4-0-in-windows-8
https://farseerphysics.codeplex.com/releases/view/110074
https://farseerphysics.codeplex.com/downloads/get/722118
这里的数据是ajax结果。
console.log(data.features.geometry[0].coordinates);
答案 0 :(得分:1)
因为要素是数组而几何是对象
console.log(data.features[0].geometry.coordinates);
这里是迭代代码
var myloop = data.features[0].geometry.coordinates[0]
for(var i = 0;i<myloop.length ; i++){
console.log(myloop[i][0],myloop[i][1])
}