Ich habe eine Menge Spaß beim Spielen mit topojson, aber es sieht so aus, als ob topojson.object in V1 von topojson nicht definiert ist, wo es in V0 unterstützt wurde. Kann jemand erklären, wie ich dieses Problem umgehen könnte? Ich versuche, für jedes Polygon in einer als topojson formatierten Eingabedatei eindeutige Pfadelemente zu zeichnen. der Code ist:topojson.object in topojson V1
d3.json("maTopo.json", function(error, ma) {
svg.selectAll(".subunit")
.data(topojson.object(ma, ma.objects.ma).geometries)
.enter().append("path")
.attr("class", function(d) { return "subunit " + d.id; })
.attr("d", path);
});
Siehe http://stackoverflow.com/questions/17404239/ – Hugolpz