function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3511], ['Algeria', 6], ['Angola', 1], ['Antarctica', 4], ['Argentina', 10], ['Australia', 21], ['Bahamas', 1], ['Bouvet Island', 1], ['Brazil', 1415], ['Chile', 3], ['China', 1], ['Colombia', 1], ['Comoros', 1], ['Costa Rica', 4], ['Democratic Republic of the Congo', 1], ['Djibouti', 1], ['El Salvador', 6], ['French Guiana', 1], ['Germany', 2], ['Guam', 3], ['Heard Island and McDonald Islands', 25], ['Hong Kong', 2], ['Iceland', 4], ['India', 3], ['Indonesia', 34], ['Indonesia, ambon island', 1], ['Ireland', 1], ['Italy', 1], ['Japan', 6], ['Macao', 11], ['Madagascar', 39], ['Malaysia', 1], ['Mexico', 10], ['Namibia', 3], ['New Zealand', 1], ['Oman', 1], ['Pakistan', 3], ['Panama', 3], ['Philippines', 2], ['Russia', 2], ['Samoa', 2], ['Singapore', 5], ['South Africa', 323], ['South Georgia and the South Sandwich Islands', 7], ['Taiwan', 5], ['Tanzania', 1], ['Thailand', 4], ['United Kingdom', 11], ['United States of America', 3], ['Venezuela', 3], ['Vietnam', 1], ['south australia', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=5513', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 52, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);