0
オクラホマ州をテキサス州の1つの郡と合併しようとしています。単一のtopojsonマージに2つのオブジェクトを使用します。 d3.select( "svg")内の複数のデータ
私は、オクラホマ州全体の状態IDとテキサス州の郡の郡IDを含む2つの変数を持っています。 state.geometries.filterとcounty.geometries.filterをどのように組み合わせるのですか?実際には合併されるテキサス州のいくつかの郡がありますが、これは例のためランダムに選ばれました。
のみ最もデータム下を返す私のコードは、以下の通りである:
.county-borders {
fill: none;
stroke: #fff;
stroke-width: 0.5px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}
.state-borders {
fill: none;
stroke: #fff;
stroke-width: 0.7px;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}
.state.southcentral {
fill: steelblue;
stroke: #fff;
}
<svg width="960" height="600"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
var svg = d3.select("svg");
var path = d3.geoPath();
var southcentral = {
"40": 1
};
var southcentral_c = {
"48043": 1
};
d3.json("https://d3js.org/us-10m.v1.json", function(error, us) {
if (error) throw error;
svg.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.enter().append("path")
.attr("d", path);
svg.append("path")
.attr("class", "state-borders")
.attr("d", path(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; })));
//multiple datum, only shows the bottom most one. Need to combine into one merge but they use different objects in the JSON.
svg.append("path")
.datum(topojson.merge(us, us.objects.states.geometries.filter(function(d) { return d.id in southcentral; })))
.datum(topojson.merge(us, us.objects.counties.geometries.filter(function(d) { return d.id in southcentral_c; })))
.attr("class", "state southcentral")
.attr("d", path);
});
残念ながら、それは動作しませんでした。配列.datum(topojson.merge(us、arr [1]))から値を呼び出すと、countyが返されますが、arrを使用するだけでは機能しません。 arr [i]を使う関数が使えますか? –
ああ、私はそれが 'filter'が配列を返すという事実を無視していると思います。テストとして、2つの配列の代わりに2つのオブジェクトが含まれるように、2つのフィルタ処理ステートメントの最後に '[0]'を追加してみてください。誤った答えで 'arr [1]'は単一のオブジェクトを持つ配列を返すので、 'arr [1]'を試してみると意味があります。 –
それは働いた!私はそれが何が変わったのか分かりません。ありがとう、結構です! –