function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2203], ['Afghanistan', 325], ['Australia', 16], ['Barbados', 1], ['Belize', 1], ['Bermuda', 1], ['Brazil', 1039], ['British Virgin Islands', 1], ['Cape Verde', 2], ['Chile', 1], ['China', 106], ['Christmas Island', 18], ['Comoros', 1], ['Cook Islands', 1], ['Costa Rica', 8], ['Cuba', 20], ['CuraƧao', 4], ['Ecuador', 6], ['Egypt', 1], ['Fiji', 2], ['France', 103], ['Ghana', 8], ['Greece', 101], ['Greenland', 1], ['Guinea-Bissau', 24], ['Iceland', 43], ['Indonesia', 3], ['Ireland', 2], ['Italy', 1], ['Japan', 339], ['Kenya', 8], ['Liberia', 1], ['Luxembourg', 1], ['Madagascar', 2], ['Martinique', 1], ['Mauritania', 31], ['Mauritius', 1], ['Mexico', 62], ['Morocco', 9], ['Mozambique', 973], ['New Caledonia', 2], ['New Zealand', 1], ['Nicaragua', 230], ['Norway', 90], ['Panama', 11], ['Philippines', 104], ['Portugal', 3], ['Saint Helena, Ascension and Tristan da Cunha', 4], ['Saint Kitts and Nevis', 2], ['Sao Tome and Principe', 3], ['Senegal', 56], ['Somalia', 4], ['South Africa', 5], ['South Georgia and the South Sandwich Islands', 2], ['South Korea', 1], ['Spain', 1], ['Sri Lanka', 33], ['Sudan', 10], ['Tunisia', 30], ['United States of America', 22], ['Virgin Islands', 1], ['Western Sahara', 13], ['Yemen', 4], ['guam island', 9], ['la reunion island', 1], ['reunion island', 2], ['tristan da cunha island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=6116', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 67, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);