function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 926], ['Afghanistan', 11], ['Antarctica', 1], ['Argentina', 36], ['Australia', 293], ['Azerbaijan', 6], ['Bolivia', 10], ['Botswana', 11], ['Brazil', 606], ['Burundi', 4], ['Cameroon', 1], ['Chad', 101], ['Chile', 321], ['China', 388051], ['Colombia', 12], ['Comoros', 8], ['Costa Rica', 5], ['Democratic Republic of the Congo', 103], ['Ecuador', 285], ['Eritrea', 1], ['Ethiopia', 5], ['Fiji', 1], ['French Guiana', 18], ['Gabon', 5], ['Georgia', 9], ['Ghana', 4], ['Guinea-Bissau', 5], ['Guyana', 1], ['Iceland', 46], ['India', 47], ['Indonesia', 4], ['Iran', 1], ['Italy', 5], ['Ivory Coast', 4], ['Japan', 2], ['Jordan', 2], ['Kenya', 18], ['Laos', 4], ['Liberia', 2], ['Macedonia', 19], ['Madagascar', 5], ['Malawi', 4], ['Malaysia', 50], ['Mexico', 5], ['Mozambique', 15], ['Myanmar', 5], ['Namibia', 9], ['Panama', 14], ['Papua New Guinea', 12], ['Peru', 12], ['Philippines', 6], ['Portugal', 6], ['Russia', 27], ['Rwanda', 19], ['Saint Helena, Ascension and Tristan da Cunha', 66], ['Saint Kitts and Nevis', 10], ['Saint Lucia', 38], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 1], ['Sao Tome and Principe', 9], ['Senegal', 52], ['Serbia', 183], ['Sierra Leone', 3], ['Slovenia', 112], ['South Africa', 445], ['South Korea', 4], ['Spain', 195], ['Sri Lanka', 12], ['Swaziland', 3], ['Switzerland', 10], ['Tanzania', 14], ['Thailand', 1], ['Turkey', 42], ['Uganda', 52], ['Uruguay', 7], ['Venezuela', 6], ['Vietnam', 40], ['Yemen', 5], ['Zambia', 2], ['Zimbabwe', 51] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=392547', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 80, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);