Skip to content

Instantly share code, notes, and snippets.

@Hermann-SW
Created June 18, 2015 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hermann-SW/29fb1f9fb2d9f02bada6 to your computer and use it in GitHub Desktop.
Save Hermann-SW/29fb1f9fb2d9f02bada6 to your computer and use it in GitHub Desktop.
Google geochart sample at provinces resolution (Germany)
<!--
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>
@Hermann-SW
Copy link
Author

For easy online inspection of the visual result:
https://stamm-wilbrandt.de/en/gist/Germany.html

@Hermann-SW
Copy link
Author

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