index.html
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<style>
html, body {
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
}
svg {
width:980px;
height: 500px;
background-color:#ede4cd;
}
h1 {
color:#666;
}
</style>
</head>
<body>
<svg></svg>
<script src="//unpkg.com/d3@4.12.2/build/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/3.0.0/topojson.min.js"></script>
<script>
const width = 980;
const height = 500;
const svg = d3.select("svg");
const mapLayer = svg.append("g");
const voronoiLayer = svg.append("g");
const projection = d3.geoMercator();
const path = d3.geoPath();
const q = d3.queue();
q
.defer(d3.json, "takasaki.topojson")
.defer(d3.json, "gasStation.geojson")
.await((error, maps2topo, point2geo) => {
const maps2geo = topojson.feature(maps2topo, maps2topo.objects.takasaki);
projection.fitExtent([[0,0],[width, height]], maps2geo);
path.projection(projection);
drawMaps(maps2geo);
drawVoronoi(point2geo);
});
function drawMaps(geojson){
const map = mapLayer.attr("id", "map")
.selectAll("path")
.data(geojson.features)
.enter()
.append("svg:path")
.attr("d", path)
.attr("fill", "#99ff99")
.attr("fill-opacity", 1)
.attr("stroke", "black");
}
function drawVoronoi(geojson){
const pointdata = geojson.features;
const positions = [];
pointdata.forEach(d => {
positions.push(projection(d.geometry.coordinates));
});
voronoiLayer.selectAll(".point")
.data(positions)
.enter()
.append("circle")
.attr("class", "point")
.attr("transform", d => `translate(${d[0]}, ${d[1]})` )
.attr("r", 2);
const voronoi = d3.voronoi()
.extent([[-1, -1],[width+1, height+1]]);
const polygons = voronoi(positions).polygons();
voronoiLayer.selectAll(".cell")
.data(polygons)
.enter()
.append("path")
.attr("class", "cell")
.attr("fill", "none")
.attr("stroke", "black")
.attr("d", d => `M${d.join("L")}Z` );
}
</script>
</body>
</html>