我一直在使用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>
答案 0 :(得分:1)
在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中签入您应该使用的内容。