Skip to content

Instantly share code, notes, and snippets.

@n1n9-jp
Created July 1, 2014 07:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n1n9-jp/a3f499ac59b93080412e to your computer and use it in GitHub Desktop.
Save n1n9-jp/a3f499ac59b93080412e to your computer and use it in GitHub Desktop.
Fukushima TopoJSON
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Fukushima TopoJSON</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/queue.v1.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js" charset="utf-8"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<style>
#map {
width:960px;
height:500px;
margin: 0 auto;
}
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 10px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
font-size: 10px;
}
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
/* --------------------
変数定義
-------------------- */
var width = 960,
height = 500;
var tip;
/* --------------------
描画のための準備
-------------------- */
/* 地図投影の指定 */
var projection = d3.geo.mercator()
.scale(15000)
.center([140.359742, 37.400529]);
/* 地形データをSVGに変換するための入れ物 */
var path = d3.geo.path()
.projection(projection);
/* 描画領域の指定 */
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height);
/* ツールチップ */
tip = d3.tip()
.attr('class', 'd3-tip')
.offset([-10, 0])
.html(function(d) {
return d.properties.ward_ja;
});
svg.call(tip);
/* --------------------
データファイルの読み込み
-------------------- */
queue()
.defer(d3.json, "fukushima.topojson")
.await(loadReady);
/* --------------------
地図の描画
-------------------- */
function loadReady(_error, _topojson) {
if (_error){ console.log(_error); }
/* 描画用の変数定義 */
var geometries = topojson.feature(_topojson, _topojson.objects.fukushima).features;
/* 描画 */
var countries = svg.append("g").selectAll(".prefecture").data(geometries);
countries
.enter().insert("path")
.attr("class", "prefecture")
.attr("d", path)
.style("fill", "#999")
.style("stroke", "#FFF")
.style("stroke-width", "1px")
.on('mouseover', tip.show)
.on('mouseout', tip.hide);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment