function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 12911], ['Albania', 18], ['Algeria', 1], ['American Samoa', 13], ['Angola', 53], ['Antarctica', 1], ['Argentina', 410], ['Armenia', 4], ['Australia', 502], ['Australia, Antarctica', 1], ['Austria', 6], ['Azerbaijan', 1], ['Azerbaijan, Russia, Belgium, Germany, Ukraine, Georgia, Hungary,', 1], ['Belgium', 25], ['Benin', 29], ['Bosnia and Herzegovina', 1], ['Brazil', 373], ['Bulgaria', 12], ['Burundi', 27], ['Cameroon', 24], ['Canada', 30], ['Cape Verde', 6], ['Chile', 84], ['China', 211], ['Clipperton Island', 1], ['Colombia', 8], ['Costa Rica', 35], ['Croatia', 113], ['Cuba', 74], ['Czech Republic', 4], ['Democratic Republic of the Congo', 35], ['Democratic Republic of the Congo, Burundi', 1], ['Denmark', 16], ['Dominican Republic', 3], ['Ecuador', 35], ['Egypt', 39], ['Estonia', 2], ['Ethiopia', 20], ['Falkland Islands', 2], ['Finland', 8], ['France', 146], ['French Polynesia', 2], ['Gabon', 5], ['Georgia', 12], ['Germany', 423], ['Ghana', 16], ['Gibraltar', 22], ['Greece', 23], ['Greenland', 1], ['Guadeloupe', 70], ['Guatemala', 3], ['Guinea-Bissau', 1], ['Heard Island and McDonald Islands', 1], ['Honduras', 2], ['Hong Kong', 33], ['Hungary', 76], ['Hungary, Iceland, India, Indonesia, Iran, Iraq, Israel, Italy, J', 1], ['Iceland', 25], ['Iceland, South Georgia and the South Sandwich Islands', 1], ['India', 283], ['Indonesia', 46], ['Iran', 665], ['Ireland', 6], ['Israel', 13], ['Italy', 179], ['Ivory Coast', 4], ['Jamaica', 1], ['Japan', 74], ['Kazakhstan', 44], ['Kenya', 883], ['Kyrgyzstan', 7], ['Lithuania', 1], ['Luxembourg', 1], ['Madagascar', 19], ['Malawi', 7], ['Malaysia', 34], ['Martinique', 6], ['Mexico', 17], ['Mongolia', 1], ['Mozambique', 1], ['Namibia', 25], ['Nepal', 3], ['Netherlands', 91], ['New Caledonia', 101], ['New Zealand', 22], ['Nigeria', 10], ['Norway', 6], ['Panama', 2], ['Papua New Guinea', 15], ['Paraguay', 7], ['Peru', 26], ['Philippines', 16], ['Poland', 12], ['Portugal', 32], ['Puerto Rico', 2], ['Romania', 3], ['Russia', 258], ['Rwanda', 20], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Lucia', 11], ['Saint Pierre and Miquelon', 53], ['Saudi Arabia', 11], ['Seychelles', 2], ['Sierra Leone', 1], ['Singapore', 19], ['Slovakia', 181], ['Slovenia', 205], ['Somalia', 2], ['South Africa', 454], ['South Georgia and the South Sandwich Islands', 1], ['South Korea', 56], ['South Korea, Japan', 1], ['Spain', 30], ['Sri Lanka', 12], ['Sweden', 41453], ['Switzerland', 13], ['Taiwan', 11], ['Taiwan, South Korea, Japan', 2], ['Tajikistan', 5], ['Tanzania', 85], ['Thailand', 18], ['Trinidad and Tobago', 1], ['Tunisia', 2397], ['Turkey', 190], ['Turks and Caicos Islands', 2], ['Uganda', 22], ['Ukraine', 2143], ['United Kingdom', 60], ['United States of America', 251], ['Vanuatu', 1], ['Venezuela', 8], ['Vietnam', 20], ['Yemen', 1], ['Zambia', 35], ['south', 1], ['tristan da cunha island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=66707', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 136, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);