function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 73], ['Australia', 196], ['Bahrain', 1], ['Bangladesh', 1], ['Barbados', 1], ['Brazil', 23], ['Chile', 0], ['China', 11], ['Comoros', 1], ['Cuba', 6], ['Democratic Republic of the Congo', 0], ['Egypt', 8], ['Eritrea', 5], ['France', 2], ['Guinea-Bissau', 3], ['Honduras', 0], ['Iceland', 2], ['India', 16], ['Indonesia', 24], ['Iraq', 1], ['Ireland', 8], ['Japan', 50], ['Jordan', 3], ['Kenya', 2], ['Lebanon', 6], ['Madagascar', 3], ['Malaysia', 3], ['Martinique', 2], ['Mozambique', 1], ['Myanmar', 0], ['Namibia', 0], ['New Caledonia', 2], ['New Zealand', 1], ['Oman', 1], ['Panama', 2], ['Papua New Guinea', 176], ['Peru', 5], ['Philippines', 14], ['Portugal', 1], ['Saudi Arabia', 9], ['Senegal', 6], ['Singapore', 0], ['Somalia', 2], ['South Africa', 123], ['Sri Lanka', 0], ['Switzerland', 1], ['Taiwan', 546], ['Tanzania', 1], ['Thailand', 0], ['Turkey', 0], ['United Kingdom', 3], ['United States of America', 1303], ['Vanuatu', 2], ['Vietnam', 1], ['Yemen', 2], ['ambon island', 1], ['papua new gunea', 1], ['south america', 0] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2655', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 58, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);