Created
June 18, 2015 02:23
-
-
Save Hermann-SW/29fb1f9fb2d9f02bada6 to your computer and use it in GitHub Desktop.
Google geochart sample at provinces resolution (Germany)
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
<!-- | |
Google geochart of Germany at provinces resolution | |
https://stamm-wilbrandt.de/en/github/Germany.html | |
https://google-developers.appspot.com/chart/interactive/docs/gallery/geochart | |
--> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<script type='text/javascript' src='https://www.google.com/jsapi'></script> | |
<script type='text/javascript'> | |
google.load('visualization', '1', {'packages': ['geochart']}); | |
google.setOnLoadCallback(drawMap); | |
function drawMap() { | |
var data = google.visualization.arrayToDataTable([ | |
['State', 'Population', 'Area(km²)'], | |
['DE-BW', 10569100, 35752], | |
['DE-BY', 12519600, 70549], | |
['DE-BE', 3375200, 892], | |
['DE-BB', 2449500, 29477], | |
['DE-HB', 654800, 404], | |
['DE-HH', 1734300, 755], | |
['DE-HE', 6016500, 21115], | |
['DE-MV', 1600300, 23174], | |
['DE-NI', 7779000, 47618], | |
['DE-NW', 17554300, 34043], | |
['DE-RP', 3990300, 19847], | |
['DE-SL', 994300, 2569], | |
['DE-SN', 4050200, 18416], | |
['DE-ST', 2259400, 20445], | |
['DE-SH', 2806500, 15763], | |
['DE-TH', 2170500, 16172] | |
]); | |
var geochart = new google.visualization.GeoChart(document.getElementById('chart_div')); | |
geochart.draw(data, {width: 1024, height: 640, region: "DE", resolution: "provinces"}); | |
}; | |
</script> | |
</head> | |
<body> | |
<div id="chart_div"></div> | |
</body> | |
</html> |
I do use Google maps API differently as well, see my "Running abroad" page:
http://stamm-wilbrandt.de/my_Running_abroad.xml
This blog posting describes the details:
https://www.ibm.com/developerworks/community/blogs/HermannSW/entry/google_maps_api_and_xslt3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For easy online inspection of the visual result:
https://stamm-wilbrandt.de/en/gist/Germany.html