NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/d3-hexjson/examples/example-boundary-dots.html
2023-09-14 14:47:11 +08:00

131 lines
3.3 KiB
HTML

<html>
<head>
<style>
#vis {
margin: 0;
padding: 0;
text-align: center;
font-family: sans-serif;
font-size: 10pt;
}
</style>
</head>
<body>
<div id="vis"></div>
<script src="d3.min.js"></script>
<script src="../build/d3-hexjson.js"></script>
<script>
d3.json("example-boundary.hexjson", function(error, hexjson) {
// Set the size and margins of the svg
var margin = {top: 10, right: 10, bottom: 10, left: 10},
width = 500 - margin.left - margin.right,
height = 420 - margin.top - margin.bottom;
// Create the svg element
var svg = d3
.select("#vis")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// Create the grid hexes and render them
var grid = d3.getGridForHexJSON(hexjson);
var gridHexes = d3.renderHexJSON(grid, width, height);
// Render the data hexes
var hexes = d3.renderHexJSON(hexjson, width, height);
// Generate points along the boundaries which differ according to a specified
// field - in this case, "prov"
var boundaryPoints = d3.getBoundaryDotsForHexJSON(hexjson, width, height, "prov");
// Draw the background grid BEFORE the data
// Bind the grid hexes to g.grid elements of the svg and position them
var hexgrid = svg
.selectAll("g.grid")
.data(gridHexes)
.enter()
.append("g")
.attr("transform", function(hex) {
return "translate(" + hex.x + "," + hex.y + ")";
});
// Draw the polygons around each grid hex's centre
hexgrid
.append("polygon")
.attr("points", function(hex) {return hex.points;})
.attr("stroke", "#b0b0b0")
.attr("stroke-width", "1")
.attr("fill", "#f0f0f0");
// Bind the data hexes to g.data elements of the svg and position them
var hexmap = svg
.selectAll("g.data")
.data(hexes)
.enter()
.append("g")
.attr("transform", function(hex) {
return "translate(" + hex.x + "," + hex.y + ")";
});
// Draw the polygons around each data hex's centre
hexmap
.append("polygon")
.attr("points", function(hex) {return hex.points;})
.attr("stroke", "white")
.attr("stroke-width", "2")
.attr("fill", "#b0e8f0");
// Add the codes for the data hexes as labels
hexmap
.append("text")
.append("tspan")
.attr("text-anchor", "middle")
.attr("fill", "#111111")
.text(function(hex) {return hex.key + " " + hex.prov;});
// Try to draw boundary lines
var lineFunction = d3.line()
.x(function(d) { return d.x })
.y(function(d) { return d.y });
//.interpolate("linear");
var boundaryMarkers = svg
.selectAll("g.lines")
.attr("stroke", "steelblue")
.attr("stroke-width", 1.5)
.attr("fill", "none")
.data(boundaryPoints)
.enter()
.append("circle")
.attr("cx", function(d) { return d.x;})
.attr("cy", function(d) { return d.y;})
.attr("r", 5);
// var boundaryLines = hexmap.append("path")
// .attr("d", lineFunction(boundaries))
// .attr("stroke", "blue")
// .attr("stroke-width", 2)
// .attr("fill", "none");
// var hexbounds = svg
// .selectAll("g.data")
// .data(boundaries)
// .enter()
// .append("g")
// .attr("transform", function(line) {
// return "translate(" + line.x + "," + line.y + ")";
// })
});
</script>
</body>
</html>