使用D3.js和GeoJson在地图上显示States上的一些文本

Displaying some text on States on Map using D3.js and GeoJson

本文关键字:States 显示 文本 地图 js D3 GeoJson 使用      更新时间:2023-09-26

我一直在使用Storm和Redis,为了可视化从Redis获取的数据,我需要渲染一张地图(印度)并根据状态放置数据。我已经正确地绘制了地图,但不知道如何在各自的州边界内显示文本。任何帮助都将不胜感激。谢谢

<!DOCTYPE html>
<html lang="en">
<head>
<title>Visualization Demo</title>
<script type="text/javascript" src="d3.min.js"></script>
<script type="text/javascript" src="d3.geo.min.js"></script>
<link type="text/css" rel="stylesheet" href="color-scheme.css"/>
<style type="text/css">
svg {
    background: #282828;
}
body {
    background: #282828;
}
h1 {
    color:#999999;
}
#india {
    fill: #99FFCC;
    opacity: .9;
    stroke: white;
    stroke-width: 1.0;
}
#chart {
    margin-left:150px;
}
</style>
</head>
<body>
    <h1><center>VISUALIZATION</center></h1>
    <div id="chart"></div>
    <script type="text/javascript">
        var w = 1000;
        var h = 1500;
        var proj = d3.geo.mercator();
        var path = d3.geo.path().projection(proj);
        var t = proj.translate(); // the projection's default translation
        var s = proj.scale() // the projection's default scale
        var map = d3.select("#chart").append("svg:svg")
        .attr("width", w)
        .attr("height", h)
        .call(initialize);
        var india = map.append("svg:g")
        .attr("id", "india");
        d3.json("india-states.json", function (json) {
            india.selectAll("path")
            .data(json.features)
            .enter().append("path")
            .attr("d", path);
        });
        function initialize() {
            proj.scale(9000);
            proj.translate([-1520, 1000]);
        }
    </script>
</body>
</html>

d3.json函数中试试这个:

india.selectAll("text")
    .data(json.features)
    .enter()
    .append("text")
    .attr("fill", "black")
    .attr("transform", function(d) { 
        var centroid = path.centroid(d);
        return "translate(" + centroid[0] + "," + centroid[1] + ")"
    })
    .attr("text-anchor", "middle")
    .attr("dy", ".35em")
    .text(function(d) {
          return d.properties.STATE_NAME;
    });

您可能没有properties.STATE_NAME作为状态的名称,但只需在JSON中检查一下您应该在这里使用什么。