function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 60288], ['Afghanistan', 1044], ['American Samoa', 9], ['Angola', 405], ['Antarctica', 284], ['Antigua and Barbuda', 1], ['Argentina', 494], ['Ashmore and Cartier Islands', 32], ['Australia', 33697], ['Bahamas', 2918], ['Bangladesh', 2], ['Barbados', 9], ['Belgium', 4], ['Belize', 7], ['Benin', 62], ['Bermuda', 91], ['Bonaire, Sint Eustatius and Saba', 2], ['Bonaire, Sint Eustatius and Saba, CuraƧao', 1], ['Brazil', 7327], ['Bulgaria', 1], ['Canada', 321], ['Cape Verde', 430], ['Chile', 228], ['China', 262], ['Christmas Island', 439], ['Cocos (Keeling) Islands', 122], ['Cook Islands', 7], ['Costa Rica', 6], ['Croatia', 8], ['Cuba', 4], ['Cyprus', 74], ['Czech Republic', 1], ['Denmark', 32], ['Egypt', 34], ['El Salvador', 52], ['Eritrea', 1], ['Falkland Islands', 18], ['Fiji', 90], ['France', 514], ['French Guiana', 10], ['French Polynesia', 7], ['French Southern Territories', 45], ['Gabon', 2], ['Georgia', 10], ['Germany', 9], ['Greece', 42], ['Greenland', 69], ['Guadeloupe', 1], ['Guam', 93], ['Guinea-Bissau', 28], ['Haiti', 15], ['Hong Kong', 7], ['Iceland', 3063], ['India', 179], ['Indonesia', 291], ['Iran', 459], ['Ireland', 743], ['Israel', 13], ['Italy', 168], ['Jamaica', 1], ['Japan', 441], ['Jersey', 1], ['Kazakhstan', 10], ['Kenya', 9], ['Kiribati', 8], ['Kyrgyzstan', 1], ['Liberia', 17], ['Libya', 1], ['Luxembourg', 1], ['Macedonia', 1], ['Madagascar', 53], ['Malaysia', 21], ['Maldives', 4], ['Maldives, India', 1], ['Malta', 1], ['Marshall Islands', 6], ['Marshall Islands, Kiribati', 1], ['Mauritania', 1], ['Mauritius', 38], ['Mayotte', 1], ['Mexico', 2616], ['Micronesia', 5], ['Monaco', 63], ['Morocco', 12], ['Mozambique', 5], ['Namibia', 17], ['Nepal', 26], ['Netherlands', 3], ['New Caledonia', 290], ['New Zealand', 2434], ['Nigeria', 9], ['Norfolk Island', 354], ['Norway', 875], ['Oman', 50], ['Pakistan', 179], ['Palau', 5], ['Panama', 450], ['Papua New Guinea', 287], ['Peru', 25], ['Philippines', 202], ['Poland', 1], ['Portugal', 17], ['Puerto Rico', 1], ['Romania', 14], ['Russia', 423], ['Saint Helena, Ascension and Tristan da Cunha', 195], ['Saint Kitts and Nevis', 49], ['Saint Lucia', 1], ['Saint Vincent and the Grenadines', 10], ['Samoa', 7], ['Senegal', 154], ['Serbia', 2], ['Seychelles', 14], ['Sierra Leone', 67], ['Singapore', 131], ['Solomon Islands', 24], ['South Africa', 666], ['South Georgia and the South Sandwich Islands', 51], ['South Korea', 1812], ['Spain', 26], ['Sri Lanka', 28], ['Sudan', 2], ['Svalbard and Jan Mayen', 57], ['Sweden', 26], ['Switzerland', 2], ['Taiwan', 31], ['Tanzania', 31], ['Thailand', 171], ['Timor-Leste', 54], ['Togo', 1], ['Tonga', 10], ['Tonga, Samoa', 6], ['Trinidad and Tobago', 9], ['Tunisia', 16], ['Turkey', 41], ['Turkmenistan', 6], ['Turks and Caicos Islands', 7], ['United Kingdom', 1232], ['United States of America', 476], ['Uruguay', 208], ['Venezuela', 12], ['Vietnam', 37], ['Virgin Islands', 1], ['Wallis and Futuna', 2], ['Western Sahara', 1], ['Yemen', 1], ['ascension island', 2], ['azores', 9], ['borneo', 5], ['hong kong island', 67], ['java', 4], ['martinique island', 43], ['niue island', 1], ['qeshm island', 15], ['saint croix island', 1], ['scotland island', 1], ['sumatra', 1], ['wales australia', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=129383', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 158, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);