function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 673], ['Australia', 2914], ['Bangladesh', 5], ['Barbados', 7], ['Belize', 77], ['Bhutan', 1], ['Bolivia', 29], ['Botswana', 1], ['Brazil', 2022], ['Cambodia', 1], ['Canada', 12], ['Chile', 0], ['China', 430], ['Colombia', 491], ['Costa Rica', 235], ['Cuba', 0], ['Democratic Republic of the Congo', 2], ['Djibouti', 4], ['Dominica', 1], ['Ecuador', 285], ['Egypt', 1], ['Ethiopia', 2], ['French Guiana', 493], ['Gabon', 0], ['Guadeloupe', 2], ['Guatemala', 33], ['Guinea-Bissau', 5], ['Guyana', 72], ['Haiti', 4], ['Honduras', 2], ['Hong Kong', 6], ['Iceland', 15], ['India', 55], ['Indonesia', 198], ['Iraq', 1], ['Italy', 0], ['Japan', 4], ['Kenya', 6], ['Laos', 2], ['Madagascar', 0], ['Malawi', 1], ['Malaysia', 295], ['Martinique', 4], ['Mexico', 486], ['Mozambique', 1], ['Myanmar', 3], ['Netherlands', 0], ['New Caledonia', 4], ['Nicaragua', 3], ['Panama', 216], ['Paraguay', 1], ['Peru', 899], ['Philippines', 7], ['Portugal', 7], ['Republic of the Congo', 0], ['Saint Vincent and the Grenadines', 12], ['Saudi Arabia', 24], ['Sierra Leone', 2], ['Singapore', 10], ['Solomon Islands', 1], ['Somalia', 9], ['South Africa', 10], ['Spain', 0], ['Sri Lanka', 13], ['Tanzania', 23], ['Thailand', 53], ['Trinidad and Tobago', 21], ['United Kingdom', 12], ['United States of America', 0], ['Vanuatu', 0], ['Venezuela', 244], ['Vietnam', 197], ['Yemen', 3], ['französisch guyana', 1], ['ile ile', 3], ['venez', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=10657', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);