function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 24269], ['Afghanistan', 0], ['Albania', 1], ['Australia', 15], ['Barbados', 1], ['Belize', 11], ['Bhutan', 13], ['Bolivia', 1], ['Brazil', 1123], ['Burundi', 3], ['Cambodia', 14], ['Cameroon', 16], ['Canada', 1], ['Central African Republic', 2], ['China', 15311], ['Colombia', 45], ['Comoros', 1], ['Costa Rica', 1], ['Cuba', 2], ['Democratic Republic of the Congo', 9], ['Denmark', 1], ['Ecuador', 36], ['Egypt', 1], ['Fiji', 2], ['France', 24], ['Gabon', 16], ['Germany', 1], ['Greece', 29], ['Greenland', 1], ['Guam', 0], ['Hong Kong', 6], ['India', 93], ['Indonesia', 28], ['Iran', 2], ['Ireland', 8], ['Italy', 2], ['Japan', 10], ['Jordan', 1], ['Kenya', 29], ['Kiribati', 2], ['Laos', 41], ['Madagascar', 739], ['Malaysia', 14], ['Mauritius', 3], ['Mayotte', 2], ['Mexico', 47], ['Micronesia', 2], ['Morocco', 3], ['Myanmar', 115], ['Nepal', 5], ['New Caledonia', 947], ['New Zealand', 2], ['Nigeria', 4], ['Norway', 1], ['Pakistan', 1], ['Panama', 2], ['Papua New Guinea', 23], ['Peru', 2], ['Philippines', 19], ['Portugal', 4], ['Russia', 7], ['Rwanda', 10], ['Saint Vincent and the Grenadines', 1], ['Samoa', 1], ['Serbia', 1], ['Singapore', 1], ['South Africa', 57], ['South Georgia and the South Sandwich Islands', 1], ['South Korea', 5], ['Spain', 9], ['Sri Lanka', 10], ['Sweden', 2], ['Switzerland', 7], ['Taiwan', 1], ['Thailand', 37], ['Turkey', 4], ['Turks and Caicos Islands', 1], ['Uganda', 2], ['United Kingdom', 3], ['United States of America', 50], ['Vanuatu', 2], ['Vietnam', 149], ['indochina', 1], ['island principe', 2], ['o m i n i c a n r e p u b l i c / h a i t i', 2], ['quatorial guinea', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=43474', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 86, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);