0

我正在尝试使用 d3.js 在绘图点之间画线。

示例geojson(FeatureCollection of 3 LineString): https ://www.dropbox.com/s/hgkdvbnrgmb6kak/test.geojson?dl=0

完整的现有代码: https ://www.dropbox.com/s/49820rs561vneti/test.html?dl=0

代码块我遇到问题:

lines.append("g").selectAll("path")
  .data(d3.entries(data.features)).enter()
  .append("svg:path")
  .attr("d", path)

圆圈出现了,但没有将它们连接在一起的线。

任何帮助将不胜感激!

4

1 回答 1

2

错误一:

在你的 topojson 里面。

{
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        103.79971,
                        1.3013115
                    ],
                    [
                        103.8071998,
                        1.2932586
                    ]
                ]
            },
            "type": "Feature",//this is wrong
            "properties": {} 
        }

它应该是:

{
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        103.79971,
                        1.3013115
                    ],
                    [
                        103.8071998,
                        1.2932586
                    ]
                ]
            },
            "properties": {}
        }

错误2:

  lines.append("g").selectAll("path")
    .data(d3.entries(data.features)).enter()
      .append("svg:path")
      .attr("d", path)
      .style("fill", "none")
      .style("stroke-width", "2px")

你不能像这样创建一条线,要创建一条线,你必须使用一个图层并像这样向它添加特征(注意这些特征来自你的 test.geojson):

d3.json("test.geojson", function(data) {
  layer1.features(data.features);//adding the features to the layer
  map.add(layer1); 

完整的工作代码在这里

于 2015-10-12T11:42:23.803 回答