function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 9050], ['Afghanistan', 11], ['Algeria', 7], ['American Samoa', 11], ['Angola', 1], ['Anguilla', 2], ['Antarctica', 4], ['Armenia', 1], ['Australia', 129], ['Belarus', 7], ['Belgium', 3], ['Belize', 5], ['Bermuda', 10], ['Bonaire, Sint Eustatius and Saba', 3], ['Brazil', 606], ['Canada', 4], ['Cape Verde', 40], ['China', 14], ['Colombia', 3], ['Costa Rica', 4], ['Croatia', 4], ['Cuba', 5], ['CuraƧao', 28], ['Democratic Republic of the Congo', 5], ['Denmark', 86], ['Egypt', 6], ['El Salvador', 1], ['Estonia', 1], ['Falkland Islands', 3], ['Fiji', 2], ['France', 124], ['French Polynesia', 1], ['Germany', 24], ['Ghana', 13], ['Gibraltar', 7], ['Greece', 84], ['Greenland', 109], ['Guadeloupe', 20], ['Guernsey', 2], ['Guinea-Bissau', 1], ['Haiti', 2], ['Haiti, United States of America', 31], ['Heard Island and McDonald Islands', 1], ['Iceland', 51], ['India', 137], ['Indonesia', 8], ['Iran', 1], ['Ireland', 2], ['Isle of Man', 4], ['Israel', 1], ['Italy', 161], ['Jamaica', 8], ['Japan', 2557], ['Lebanon', 41], ['Madagascar', 3], ['Maldives', 15], ['Malta', 386], ['Mexico', 151], ['Monaco', 165], ['Morocco', 39], ['Mozambique', 4], ['Myanmar', 2], ['Namibia', 1], ['Netherlands', 1], ['New Caledonia', 1], ['New Zealand', 136], ['Norfolk Island', 6], ['Norway', 736], ['Oman', 9], ['Panama', 124], ['Philippines', 46], ['Portugal', 22], ['Puerto Rico', 64], ['Russia', 9], ['Rwanda', 2], ['Senegal', 16], ['Sierra Leone', 2], ['Singapore', 4], ['Solomon Islands', 3], ['South Africa', 258], ['South Georgia and the South Sandwich Islands', 4], ['South Korea', 6], ['Spain', 55], ['Sri Lanka', 7], ['Sudan', 3], ['Svalbard and Jan Mayen', 101], ['Sweden', 1], ['Tajikistan', 1], ['Tanzania', 3], ['Thailand', 3], ['Tonga', 1], ['Trinidad and Tobago', 2], ['Tunisia', 11], ['Turkmenistan', 1], ['United Kingdom', 47], ['United States of America', 1224], ['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=17174', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 105, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);