topojsonで遊ぶのが楽しいですが、topojson.objectはtopojsonのV1で定義されていないようです(V0でサポートされています)。誰かがこの問題を回避する方法を説明できますか?私はtopojsonとしてフォーマットされた入力ファイル内の各ポリゴンに別個のパス要素を描こうとしています。コードはtopojson.opject 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);
});
http://stackoverflow.com/questions/17404239/を参照してください。 – Hugolpz