function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 6459], ['Afghanistan', 3], ['Algeria', 6], ['American Samoa', 11], ['Anguilla', 2], ['Antarctica', 4], ['Australia', 129], ['Belarus', 7], ['Belgium', 3], ['Belize', 5], ['Bermuda', 10], ['Bonaire, Sint Eustatius and Saba', 3], ['Brazil', 580], ['Canada', 1], ['Cape Verde', 40], ['China', 1], ['Colombia', 3], ['Costa Rica', 4], ['Croatia', 3], ['Cuba', 5], ['CuraƧao', 28], ['Denmark', 86], ['Egypt', 5], ['El Salvador', 1], ['Falkland Islands', 3], ['Fiji', 2], ['France', 115], ['French Polynesia', 1], ['Germany', 24], ['Ghana', 13], ['Gibraltar', 7], ['Greece', 80], ['Greenland', 109], ['Guernsey', 1], ['Guinea-Bissau', 1], ['Haiti', 2], ['Haiti, United States of America', 31], ['Heard Island and McDonald Islands', 1], ['Iceland', 51], ['India', 132], ['Indonesia', 8], ['Ireland', 2], ['Isle of Man', 1], ['Israel', 1], ['Italy', 146], ['Jamaica', 8], ['Japan', 2557], ['Lebanon', 41], ['Maldives', 15], ['Malta', 386], ['Mexico', 150], ['Monaco', 165], ['Morocco', 39], ['Mozambique', 4], ['Netherlands', 1], ['New Caledonia', 1], ['New Zealand', 135], ['Norfolk Island', 6], ['Norway', 736], ['Oman', 9], ['Panama', 124], ['Philippines', 45], ['Portugal', 21], ['Puerto Rico', 64], ['Russia', 2], ['Senegal', 16], ['Sierra Leone', 2], ['Singapore', 4], ['Solomon Islands', 3], ['South Africa', 258], ['South Georgia and the South Sandwich Islands', 4], ['South Korea', 2], ['Spain', 42], ['Sri Lanka', 7], ['Sudan', 3], ['Svalbard and Jan Mayen', 101], ['Sweden', 1], ['Tanzania', 1], ['Thailand', 2], ['Trinidad and Tobago', 2], ['Tunisia', 8], ['Turkmenistan', 1], ['United Kingdom', 41], ['United States of America', 1204], ['Uzbekistan', 4], ['Vanuatu', 8], ['Venezuela', 4], ['Virgin Islands', 1], ['aruba island', 25], ['cape verde island', 2], ['flores island', 2], ['north america', 3], ['seychelles island', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=14394', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 93, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);