Skip to content

Instantly share code, notes, and snippets.

@ermolaev
Forked from markmarkoh/README.md
Last active August 29, 2015 14:05
Show Gist options
  • Save ermolaev/de949d090c22ac02149b to your computer and use it in GitHub Desktop.
Save ermolaev/de949d090c22ac02149b to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://rawgithub.com/markmarkoh/datamaps/master/dist/datamaps.none.min.js"></script>
<div id="afghan" style="height: 500px; width: 900px;"></div>
<script>
var map = new Datamap({
element: document.getElementById('afghan'),
geographyConfig: {
dataUrl: 'tverskaja_oblast.topo.json'
},
scope: 'afghan',
fills: {
defaultFill: '#bada55',
someKey: '#fa0fa0'
},
data: {
'AFG-1758': {fillKey: 'someKey'},
'AFG-1747': {fillKey: 'someKey'}
},
setProjection: function(element) {
var projection = d3.geo.mercator()
.center([66.166667, 34.4444])
.scale(2200)
.translate([element.offsetWidth / 2, element.offsetHeight / 2]);
var path = d3.geo.path().projection(projection);
return {path: path, projection: projection};
}
});
</script>
</body>
</html>
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment