Created
June 21, 2012 23:54
-
-
Save markmarkoh/2969316 to your computer and use it in GitHub Desktop.
World Map with D3.js
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
(function(window) { | |
var data, | |
xy = d3 | |
.geo | |
.equirectangular() | |
.scale($('#map_container').width()) | |
.translate([$('#map_container').width() / 2, $('#map_container').height() / 2]), | |
path = d3 | |
.geo | |
.path() | |
.projection(xy), | |
svg = d3 | |
.select('#map_container') | |
.append('svg:svg'), | |
countries = svg | |
.append('svg:g') | |
.attr('id', 'countries'); | |
/* World Map */ | |
countries.selectAll('path') | |
.data(window.countries_data.features) // get the data here: https://gist.github.com/2969317 | |
.enter() | |
.append('svg:path') | |
.attr('d', path) | |
.attr('fill', 'rgba(29,91,85,1)') | |
.attr('stroke', 'rgba(29,91,85,1)') | |
.attr('stroke-width', 1); | |
}(this); |
Just came to double up @mittenchops request. Having a tough time comparing this to the D3 albers or mercator examples, especially in the case of the json this is using. Hoping for some more context.
You could optimize a little bit the script by reducing number of dom queries and assigning $('#map-container') to a local variable so you querythe DOM only once instead of 3 times.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can I ask for some pointers into turning this into a minimal working example for plotting a "you are here" point on a map in D3? I'm trying to make a "Hello world" equivalent on the GIS stack exchange (http://gis.stackexchange.com/questions/45549/hello-world-introduction-for-ubuntugis).
I'm creating an index.html file as follows and putting it into a directory with your gist data file (https://gist.github.com/2969317), named "countries_data.js." Here's what I have, but I'm afraid I don't understand how to apply the function to the document object.