5

我的目标是使用 d3 为给定 GeoJSON 特征集合中的每个特征生成 svg 路径。

当我使用传单映射路径时,所有功能看起来都很完美。

d3.json("ct_counties.geo.json", function(data) {
    var leaflet_paths = leaflet_map.addLayer(new L.GeoJSON(data));
});

两张地图

但是当我使用 d3 映射路径时,某些功能看起来是错误的。

d3.json("ct_counties.geo.json", function(collection) {
    var bounds = d3.geo.bounds(collection);

    var path = d3.geo.path().projection(project);

    var feature = g.selectAll("path")
        .data(collection.features)
      .enter().append("path")
        .attr('class','county');

    d3_map.on("viewreset", reset);

    reset();

    function project(x) {
      var point = d3_map.latLngToLayerPoint(new L.LatLng(x[1], x[0]));
      return [point.x, point.y];
    }

    function reset() {
      var bottomLeft = project(bounds[0]); 
      var topRight = project(bounds[1]);
      svg.attr("width", topRight[0] - bottomLeft[0])
        .attr("height", bottomLeft[1] - topRight[1])
        .style("margin-left", bottomLeft[0] + "px")
        .style("margin-top", topRight[1] + "px");
      g.attr("transform", "translate(" + -bottomLeft[0] + "," + -topRight[1] + ")");
      feature.attr("d", path);
    }
});

在此处查看地图差异。

并参考这里的完整代码。

既然两张图都使用同一个特征集合,为什么d3版本会出错呢?

4

1 回答 1

23

D3没有错,数据不正确,Leaflet比较宽松。

以利奇菲尔德(左上县)为例:

{
    "type" : "Feature",
    "properties" : {
        "kind" : "county",
        "name" : "Litchfield",
        "state" : "CT"
    },
    "geometry" : {
        "type" : "MultiPolygon",
        "coordinates" : [ [ [ [ -73.0535, 42.0390 ], [ -73.0097, 42.0390 ],
                [ -73.0316, 41.9678 ], [ -72.8892, 41.9733 ],
                [ -72.9385, 41.8966 ], [ -72.9495, 41.8090 ],
                [ -73.0152, 41.7981 ], [ -72.9823, 41.6392 ],
                [ -73.1631, 41.5571 ], [ -73.1576, 41.5133 ],
                [ -73.3219, 41.5078 ], [ -73.3109, 41.4694 ],
                [ -73.3876, 41.5133 ], [ -73.4424, 41.4914 ],
                [ -73.4862, 41.6447 ], [ -73.5191, 41.6666 ],
                [ -73.4862, 42.0500 ] ] ] ]
    }
}

多面体不是闭合的,它的结束不等于开始。我绘制了坐标,将第一个坐标标记为红色,最后一个坐标标记为绿色: 多面体中的点

如您所见,最后一个坐标被 d3 丢弃。

GeoJSON规范

LinearRing 是具有 4 个或更多位置的封闭 LineString。第一个和最后一个位置是等价的(它们代表等价点)。

所以 d3 有一个点(没有双关语),应该通过在末尾添加起始坐标来关闭 MultiPolygon:

...[ -73.4862, 42.0500 ], [ -73.0535, 42.0390 ] ] ] ]
于 2013-03-17T11:43:54.187 回答