dc.js
を使用してダッシュボードを作成しようとしています。それはいくつかのチャートとchoroplethChartを持っています。それはうまくいきましたが、地図にリーフレットを追加する必要がありました。私はthis sampleを踏襲し、dc.leaflet.js
ライブラリを使用し、代わりchoroplethChartのそれはマーカー(写真参照)dc.jsとdc.leaflet.js;間違ったタイプのマップが返されました
(これは、それはリーフレットを使用する前に見てどのようである) コードは以下であるとthis is where geojson residesを返しました:
var usChart = dc_leaflet.choroplethChart("#us-chart");
usChart.width(1000)
.height(450)
.dimension(stateDim)
.group(totalDemandByStation)
.center([ 51.4963, -0.143 ])
.zoom(11)
.geojson(statesJson)
.colors(["#E2F2FF", "#C4E4FF", "#9ED2FF", "#81C5FF", "#6BBAFF", "#51AEFF", "#36A2FF", "#1E96FF", "#0089FF", "#0061B5"])
.colorDomain([0, max_state])
.colors(['#fff7ec','#fee8c8','#fdd49e','#fdbb84','#fc8d59','#ef6548','#d7301f','#b30000','#7f0000'])
.colorAccessor(function(d,i) {
return d.value;
})
.featureKeyAccessor(function(feature) {
return feature.properties.name;
})
.renderPopup(true)
.popup(function(d,feature) {
return feature.properties.name+" : "+d.value;
})
.legend(dc_leaflet.legend().position('bottomright'));
//https://github.com/dc-js/dc.js/issues/419
usChart.on("preRender", function(chart) {
chart.colorDomain(d3.extent(chart.data(), chart.valueAccessor()));
})
usChart.on("preRedraw", function(chart) {
chart.colorDomain(d3.extent(chart.data(), chart.valueAccessor()));
})
を
これは非常に奇妙です。 [メインページの例](http://dc-js.github.io/dc.leaflet.js/)に従ったことを意味しますか?これをトラブルシューティングするための完全な例を共有できますか? – Gordon