function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 55476], ['American Samoa', 3], ['Anguilla', 1], ['Antigua and Barbuda', 1], ['Ashmore and Cartier Islands', 1], ['Australia', 59], ['Austria', 24], ['Barbados', 2], ['Belgium', 5], ['Belize', 1], ['Bermuda', 1], ['Brazil', 9], ['Brunei', 8], ['Bulgaria', 2], ['Chile', 67], ['China', 1497], ['Colombia', 15], ['Cuba', 2], ['Czech Republic', 2], ['Denmark', 7], ['Djibouti', 5], ['Egypt', 10], ['Fiji', 19], ['France', 98], ['French Polynesia', 3], ['Germany', 4], ['Greenland', 1], ['Grenada', 1], ['Guinea-Bissau', 1], ['Haiti', 2], ['Hong Kong', 2], ['Iceland', 17], ['India', 8], ['Indonesia', 1213], ['Iran', 4], ['Italy', 10], ['Jamaica', 22], ['Japan', 316], ['Kazakhstan', 2], ['Kenya', 2], ['Kuwait', 2], ['Madagascar', 15], ['Malaysia', 41], ['Maldives', 46], ['Marshall Islands', 6], ['Mexico', 20], ['Morocco', 157], ['Netherlands', 13], ['New Caledonia', 37], ['New Zealand', 1078], ['Norway', 549], ['Oman', 5], ['Pakistan', 3], ['Palau', 4], ['Panama', 10], ['Papua New Guinea', 2], ['Peru', 2], ['Philippines', 2364], ['Portugal', 2], ['Saint Kitts and Nevis', 1], ['Saint Lucia', 2463], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 1], ['Samoa', 1], ['Saudi Arabia', 6], ['Senegal', 1], ['Serbia', 1], ['Seychelles', 67], ['Singapore', 8], ['Slovenia', 1], ['Somalia', 2], ['South Africa', 3], ['Spain', 7], ['Sri Lanka', 2], ['Sudan', 10], ['Taiwan', 3], ['Tanzania', 1], ['Tonga', 3], ['Tunisia', 1], ['Turkey', 4], ['Ukraine', 1], ['United Arab Emirates', 1], ['United Kingdom', 281], ['United States Virgin Islands', 2], ['United States of America', 16], ['Vanuatu', 8], ['Venezuela', 3], ['Vietnam', 4], ['Wake Island', 1], ['Yemen', 14], ['wallis island', 2], ['zanzibar island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=66201', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 92, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);