这是小提琴:https://jsfiddle.net/d5Lqemsq/1/
d3.json("median_map_2_pct.topojson", function(error, nc) {
if (error) return console.error(error);
var featureCollection = topojson.feature(nc, nc.objects.median_map);
svg.selectAll("path")
.data(featureCollection.features)
.enter().append("path")
.attr("d", path.projection(projection))