-
-
Save markmarkoh/10900301 to your computer and use it in GitHub Desktop.
Datamaps with custom data and custom projection
This file contains hidden or 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> | |
<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://datamaps.github.io/scripts/datamaps.none.min.js"></script> | |
<div id="container" style="position: relative; width: 500px; height: 300px;"></div> | |
<script> | |
var map = new Datamap({ | |
element: document.getElementById('container'), | |
geographyConfig: { | |
dataUrl: 'mx_states.json' | |
}, | |
scope: "states", | |
setProjection: function(element, options) { | |
var projection = d3.geo.equirectangular() | |
.center([-97, 25]) | |
.rotate([4.4, 0]) | |
.scale(800) | |
.translate([element.offsetWidth / 2, element.offsetHeight / 2]); | |
var path = d3.geo.path() | |
.projection(projection); | |
return {path: path, projection: projection}; | |
} | |
}); | |
</script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment