1

我成功地得到了线和多边形之间的交点。我已经在这里发布了这个问题。现在我正在尝试显示每一行的结果。当我尝试写作时,console.log(result[i])我得到了undefined. 我必须做的正确语法是什么,我尝试了很多次。这是我当前的代码:

var lines = [line1, line2, line3, line4];
for (var i = 0; i < lines.length; i++) {
  var intersection = [];
  var result = [];
  intersection = turf.intersect(lines[i], polygon1);
  if (intersection) {
    result.push(intersection);
    L.geoJson(result, {
      style: Style
    }).addTo(map);
    console.log(JSON.stringify(result[i]));
  } else {
    L.geoJson(lines[i]).addTo(map);
  }

4

1 回答 1

1

您不是在迭代result,而是在迭代lines,因此您的i索引可能不会指向result它所在的相同位置lines。你应该console.log(intersection)改为。如果您真的想要/需要显示您推入的最新项目,result您可以使用:

console.log(result[result.length - 1]);
于 2017-03-17T17:14:10.883 回答