d3.js Map(<svg>)自动适合父容器并使用Window调整大小</svg>

时间:2013-01-10 18:47:38

标签: css canvas svg d3.js

更新:我已在答案部分发布并接受了完整的解决方案。本节中的任何代码都将用作与您自己的非工作代码进行比较的参考,但不能用作解决方案。


我正在构建一个仪表板并使用d3.js添加一个世界地图,该地图将根据地理位置实时绘制推文。

d3.json()行中引用的 world.json 文件可以下载 HERE (它叫做 world-countries.json < / em>的)。

enter image description here

地图作为SVG容器在页面上,并使用d3进行渲染。

以下是相关的代码片段。

<div id="mapContainer">
    <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="500"></svg>
</div>

#mapContainer svg {
    display:block;
    margin:0 auto;
}
#mapContainer path {
  fill:#DDD;
  stroke:#FFF;
}

// generate US plot
function draw() {
    var map = d3.select("svg");
    var width = $("svg").parent().width();
    var height = $("svg").parent().height();

    var projection = d3.geo.equirectangular().scale(185).translate([width/2, height/2]);
    var path = d3.geo.path().projection(projection);
    d3.json('plugins/maps/world.json', function(collection) {
        map.selectAll('path').data(collection.features).enter()
            .append('path')
            .attr('d', path)
            .attr("width", width)
            .attr("height", height);
    });
}
draw();
latestLoop();

$(window).resize(function() {
    draw();
});

更新:我已将地图缩放到可接受的大小(针对我的特定浏览器大小),但是当我更改窗口大小时,它仍然无法缩放和居中。但是,如果我调整窗口大小,然后点击刷新,则重新加载页面后地图将居中。但是,由于比例是静态的,因此不能正确缩放。

enter image description here

5 个答案:

答案 0 :(得分:28)

完整解决方案:

这里的解决方案将在用户释放窗口边缘以调整其大小后将调整地图大小,并将其置于父容器中。

<div id="mapContainer"></div>

function draw(ht) {
    $("#mapContainer").html("<svg id='map' xmlns='http://www.w3.org/2000/svg' width='100%' height='" + ht + "'></svg>");
    map = d3.select("svg");
    var width = $("svg").parent().width();
    var height = ht;

    // I discovered that the unscaled equirectangular map is 640x360. Thus, we
    // should scale our map accordingly. Depending on the width ratio of the new
    // container, the scale will be this ratio * 100. You could also use the height 
    // instead. The aspect ratio of an equirectangular map is 2:1, so that's why
    // our height is half of our width.

    projection = d3.geo.equirectangular().scale((width/640)*100).translate([width/2, height/2]);
    var path = d3.geo.path().projection(projection);
    d3.json('plugins/maps/world.json', function(collection) {
        map.selectAll('path').data(collection.features).enter()
            .append('path')
            .attr('d', path)
            .attr("width", width)
            .attr("height", width/2);
    });
}
draw($("#mapContainer").width()/2);

$(window).resize(function() {
    if(this.resizeTO) clearTimeout(this.resizeTO);
    this.resizeTO = setTimeout(function() {
        $(this).trigger('resizeEnd');
    }, 500);
});

$(window).bind('resizeEnd', function() {
    var height = $("#mapContainer").width()/2;
    $("#mapContainer svg").css("height", height);
    draw(height);
});

答案 1 :(得分:8)

选择对象是一个多维数组,尽管在大多数情况下它可能只有一个对象。该对象有一个“clientWidth”字段,告诉您其父级的宽度。

所以你可以这样做:

var selection = d3.select("#chart"); 
width = selection[0][0].clientWidth;

答案 2 :(得分:5)

这应该有效:

<svg 
    xmlns="http://www.w3.org/2000/svg"
    width="860"
    height="500"
    viewBox="0 0 860 500"
    preserveAspectRatio="xMinYMin meet">

答案 3 :(得分:2)

最佳选择是在d3图的宽度和高度的正常定义上结合使用纵横比。这对我的很多图表工作都有帮助 步骤1:动态获取必须附加图形的div的高度。
步骤2:将宽度声明为相对于动态捕捉高度的纵横比。

var graph_div = document.getElementById(graph.divId);
graph.height = graph_div.clientHeight;
graph.width = (960/1200)*graph.height;

答案 4 :(得分:1)

在d3 v4中,我们可以这样做

const projection = d3.geo.equirectangular().fitSize([width, height], geojson);
const path = d3.geo.path().projection(projection);

fitSize相当于

fitExtent([[0, 0], [width, height]], geojson)

免费填充添加填充