マップを div に表示しようとしていますが、このマップを div-size に制限したいのですが、現在、w と h の値と vis css 設定も無視されています。
SVG の高さと幅を設定する意味はありますか? 投影のスケールを上げると、常に組織よりも大きくなります。svg。
var w = 200;
var h = 300;
// this will attach a svg-element with the class "map" to "mydiv"
var map = d3.select("#mydiv").append("svg:svg")
.attr("width", w)
.attr("height", h)
.attr("class", "map");
var projection = d3.geo.albers()
.origin([10.5,51])
.scale(2000)
.translate([100, 150]);
var path = d3.geo.path().projection(projection);
d3.json('germany.json', function(json) {
map.selectAll('path')
.data(json.features)
.enter().append('path').attr('d', path);
});
そして私のCSS:
#vis {
overflow: hidden;
width: 350px;
height: 220px;
}