Built with blockbuilder.org
Last active
June 11, 2018 10:41
-
-
Save alteist/470e031ed4b4d4e71a081d8004931f93 to your computer and use it in GitHub Desktop.
d3 geo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"id": "01", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
51.1271, 71.4333 | |
] | |
}, | |
"properties": { | |
"name": "Астана", | |
"population": 1035537 | |
} | |
},{ | |
"type": "Feature", | |
"id": "02", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
43.2428, 76.8997 | |
] | |
}, | |
"properties": { | |
"name": "Алматы", | |
"population": 1806833 | |
} | |
},{ | |
"type": "Feature", | |
"id": "03", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
42.2964, 69.5998 | |
] | |
}, | |
"properties": { | |
"name": "Шымкент", | |
"population": 988894 | |
} | |
}, | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<html> | |
<head> | |
<title>D3.js v4 Mapping Tutorial 1</title> | |
<style> | |
svg { | |
font-family: sans-serif; | |
} | |
path.feature { | |
fill: rgba(255, 0, 0, 0.5); | |
} | |
path.feature:hover { | |
fill: rgba(255, 140, 0, 0.5); | |
cursor: zoom-in; | |
} | |
text.halo { | |
opacity: 0.7; | |
stroke: #fff; | |
stroke-width: 5px; | |
} | |
</style> | |
</head> | |
<body> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js"></script> | |
<script> | |
var projection = d3 | |
.geoMercator() | |
.scale(800) | |
// .rotate([-0.25, 0.25, 0]) | |
.center([77.5356944, 45.0747547]); | |
var path = d3.geoPath().projection(projection); | |
var map = d3.select("body") | |
.append("svg") | |
.attr("width", 960) | |
.attr("height", 500); | |
var labels = map.append('g').attr('class', 'labels') | |
d3.json("qazaqstan.json", drawMaps); | |
function drawMaps(geojson) { | |
map.selectAll("path") | |
.data(geojson.features) | |
.enter() | |
.append("path") | |
.attr("d", path) | |
.attr("fill", "steelblue") | |
.attr("fill-opacity", 0.1) | |
.attr("stroke", "steelblue") | |
labels.selectAll('.label').data(geojson.features).enter().append('text') | |
.attr("class", "halo") | |
.attr('transform', function(d) { | |
return "translate(" + path.centroid(d) + ")"; | |
}) | |
.style('text-anchor', 'middle') | |
.text(function(d) { | |
return d.properties.name | |
}); | |
labels.selectAll('.label').data(geojson.features).enter().append('text') | |
.attr("class", "label") | |
.attr('transform', function(d) { | |
return "translate(" + path.centroid(d) + ")"; | |
}) | |
.style('text-anchor', 'middle') | |
.text(function(d) { | |
return d.properties.name | |
}); | |
} | |
d3.json("cities.json", drawCities); | |
function drawCities(geojson) { | |
console.log(geojson) | |
map.selectAll(".symbol") | |
.data(geojson.features.sort(function(a, b) { return b.properties.population - a.properties.population; })) | |
.enter().append("path") | |
.attr("class", "symbol") | |
.attr("d", path.pointRadius(function(d) { return radius(d.properties.population); })); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment