function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 973], ['American Samoa', 50], ['Australia', 73], ['Bangladesh', 0], ['Brunei', 1], ['China', 35], ['Christmas Island', 2], ['Comoros', 18], ['Cook Islands', 9], ['Egypt', 62], ['Eritrea', 18], ['Ethiopia', 3], ['Fiji', 314], ['French Polynesia', 7], ['Grenada', 5], ['Guam', 83], ['Hong Kong', 3], ['Iceland', 1], ['India', 36], ['Indonesia', 194], ['Iran', 0], ['Israel', 4], ['Japan', 89], ['Jordan', 24], ['Kenya', 4], ['Kiribati', 6], ['Madagascar', 13], ['Malaysia', 37], ['Maldives', 47], ['Marshall Islands', 87], ['Mauritius', 34], ['Mayotte', 7], ['Mexico', 2], ['Micronesia', 10], ['Mozambique', 11], ['Myanmar', 7], ['New Caledonia', 51], ['Northern Mariana Islands', 8], ['Oman', 9], ['Palau', 115], ['Papua New Guinea', 125], ['Philippines', 221], ['RĂ©union', 1], ['Samoa', 8], ['Saudi Arabia', 34], ['Seychelles', 91], ['Singapore', 2], ['Solomon Islands', 43], ['Somalia', 0], ['South Africa', 10], ['South Korea', 1], ['Sri Lanka', 11], ['Sudan', 5], ['Taiwan', 24], ['Tanzania', 4], ['Thailand', 175], ['Tokelau', 2], ['Tonga', 41], ['Turkey', 0], ['United Arab Emirates', 1], ['United States of America', 0], ['Vanuatu', 17], ['Vietnam', 39], ['Wake Island', 3], ['Yemen', 7], ['new guinea', 0], ['papua new gunea', 1], ['south china sea', 0], ['tonga island', 6] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3324', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 69, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);