D3 Map未显示在本地服务器的浏览器中

时间:2015-08-02 13:25:09

标签: javascript d3.js geojson

我正在制作一张显示中国各省的D3地图。我尝试过几种不同教程的混合,但是我没有成功地将地图显示在使用python本地服务器的浏览器中。

我可以看到地图的信息已正确输入g元素,而GeoJSON文件确实包含32个省。我一定是做错了显示呢?

请在此处查看我的代码:https://github.com/claiye/map/blob/master/index.html 这是非常混乱的,因为我已经尝试了几个不同的教程,这些教程不适用于我的目标。

请指出我必须犯的愚蠢错误。非常感谢您的帮助。提前致谢! :)

1 个答案:

答案 0 :(得分:0)

问题是创建的路径不在svg和g标记内。请检查我的两条评论。我已经验证下面的代码是有效的。

<!DOCTYPE html>
<meta charset="utf-8">
<title>Map Testing</title>
<style>
    .province{
        fill:#ccc;
    }
</style>
<body>
<script type="text/javascript" src="d3/d3.v3.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script type="text/javascript">

    var width = 960; 
        height = 500;

    var svg = d3.select("body").append("svg").attr("width", width).attr("height",height);

    // Removed the slash before provinces.geojson
    d3.json("provinces.geojson", function(error, provinces) {
        if (error) return console.error(error);

        svg.append("g")
            .selectAll("path")
            .data(provinces.features)
            .enter()
            .append("path")
            .attr("class","province")
            .attr("d", d3.geo.path().projection(d3.geo.mercator().center([0,5]).scale(200).rotate([-180,0]))); // Added center and rotate here
});
</script>
</body>
<html