Created
December 8, 2012 23:13
-
-
Save gerryster/4242467 to your computer and use it in GitHub Desktop.
US State Map using the GeoChart from the Google Chart Tools
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
// GeoChart from https://google-developers.appspot.com/chart/interactive/docs/gallery/geochart | |
// Try out by pasting code into: https://code.google.com/apis/ajax/playground/?type=visualization#geo_chart | |
function drawVisualization() { | |
var data = google.visualization.arrayToDataTable([ | |
['State', 'Foo Factor'], | |
['US-IL', 200], | |
['US-IN', 300], | |
['US-IA', 20], | |
['US-RI', 150] | |
]); | |
var geochart = new google.visualization.GeoChart( | |
document.getElementById('visualization')); | |
geochart.draw(data, {width: 556, height: 347, region: "US", resolution: "provinces"}); | |
} |
If you do resolution: "metros"
in options it divides each state into districts.
The only thing I can't find is a list of the name of the districts that are recognized by Google Charts. If anyone can find this it would be very helpful! Ideally, I would like to use county names
If you do
resolution: "metros"
in options it divides each state into districts. The only thing I can't find is a list of the name of the districts that are recognized by Google Charts. If anyone can find this it would be very helpful! Ideally, I would like to use county names
Check out what I found about metros: google/google-visualization-issues#938 (comment).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
is there a way to spell out DC? I tried Washington DC and Washington D.C., didn't work.