function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 69], ['Afghanistan', 1], ['Angola', 0], ['Argentina', 0], ['Benin', 0], ['Bolivia', 8], ['Brazil', 93], ['Cambodia', 0], ['Cameroon', 0], ['Canada', 1], ['Cape Verde', 0], ['China', 2], ['Colombia', 0], ['Comoros', 1], ['Costa Rica', 6], ['Democratic Republic of the Congo', 0], ['Ecuador', 0], ['Egypt', 0], ['Equatorial Guinea', 0], ['Ethiopia', 1], ['French Guiana', 0], ['Gabon', 0], ['Germany', 2], ['Ghana', 0], ['Greece', 4], ['Guatemala', 0], ['Guinea-Bissau', 0], ['Guyana', 4], ['Iceland', 0], ['India', 600], ['Indonesia', 5], ['Japan', 0], ['Kenya', 1], ['Laos', 0], ['Liberia', 0], ['Madagascar', 916], ['Malaysia', 1], ['Mozambique', 0], ['Myanmar', 2], ['Nepal', 0], ['Nicaragua', 0], ['Nigeria', 0], ['Panama', 0], ['Paraguay', 0], ['Peru', 1947], ['Philippines', 4], ['Rwanda', 0], ['Senegal', 0], ['Sierra Leone', 0], ['Singapore', 0], ['South Africa', 0], ['Sri Lanka', 0], ['Sudan', 0], ['Suriname', 0], ['Sweden', 0], ['Taiwan', 0], ['Tanzania', 0], ['Turkey', 18], ['Uganda', 0], ['United Kingdom', 1], ['United States of America', 1], ['Venezuela', 2790], ['Vietnam', 0] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=6478', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 63, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);