function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 355], ['Argentina', 0], ['Australia', 2], ['Austria', 1], ['Belize', 1], ['Brazil', 31], ['Brunei', 1], ['Cameroon', 1], ['Central African Republic', 0], ['China', 17], ['Colombia', 3], ['Comoros', 34], ['Costa Rica', 73], ['Democratic Republic of the Congo', 0], ['Egypt', 15], ['Fiji', 0], ['French Guiana', 63], ['Gabon', 1], ['Germany', 1], ['Ghana', 0], ['Guam', 43], ['Guatemala', 26], ['Guinea-Bissau', 230], ['Honduras', 27], ['Hong Kong', 13], ['Iceland', 27], ['India', 14], ['Indonesia', 16], ['Iran', 0], ['Italy', 1], ['Ivory Coast', 5], ['Japan', 5], ['Kenya', 1], ['Macao', 3], ['Madagascar', 1236], ['Malaysia', 11], ['Mauritius', 17], ['Mayotte', 9], ['Mexico', 32], ['Micronesia', 0], ['Mozambique', 6], ['Myanmar', 7], ['Nepal', 1], ['New Caledonia', 1], ['Nicaragua', 17], ['Nigeria', 1], ['Northern Mariana Islands', 0], ['Oman', 9], ['Papua New Guinea', 1], ['Philippines', 2], ['Qatar', 1], ['Republic of the Congo', 2], ['RĂ©union', 1], ['Samoa', 2], ['Saudi Arabia', 2], ['Seychelles', 11], ['Singapore', 87], ['South Africa', 1], ['Spain', 1], ['Sri Lanka', 3], ['Suriname', 5], ['Taiwan', 11], ['Tanzania', 1], ['Thailand', 19], ['Tonga', 2], ['Turkey', 637], ['Uganda', 2], ['United Arab Emirates', 2], ['United States of America', 3], ['Venezuela', 2], ['Vietnam', 124], ['Yemen', 32], ['guam i.', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3312', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 73, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);