function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 13258], ['Afghanistan', 4], ['Albania', 11], ['Algeria', 59], ['American Samoa', 31], ['Angola', 20], ['Antarctica', 1], ['Argentina', 133], ['Armenia', 19], ['Australia', 243], ['Austria', 11], ['Azerbaijan', 1], ['Bahamas', 1], ['Belarus', 2], ['Belgium', 2], ['Belize', 1], ['Bhutan', 20], ['Bolivia', 2], ['Bosnia and Herzegovina', 90], ['Bosnia and Herzegovina, hercegovina', 1], ['Botswana', 54], ['Brazil', 289], ['Brunei', 4], ['Bulgaria', 46], ['Cambodia', 54], ['Cameroon', 4], ['Canada', 253], ['Cape Verde', 1], ['Central African Republic', 6], ['Chile', 57], ['China', 1171], ['Colombia', 72], ['Comoros', 5], ['Comoros, Madagascar, New Caledonia', 1], ['Costa Rica', 348], ['Croatia', 19], ['Cyprus', 16], ['Czech Republic', 9], ['Democratic Republic of the Congo', 195], ['Denmark', 18], ['Ecuador', 2], ['Egypt', 46], ['Ethiopia', 21], ['Fiji', 1], ['Finland', 5], ['France', 325], ['French Guiana', 37], ['Gambia', 1], ['Georgia', 3], ['Germany', 149], ['Ghana', 108], ['Greece', 79], ['Greenland', 5], ['Guadeloupe', 4], ['Guatemala', 1], ['Guinea-Bissau', 10], ['Guyana', 1], ['Heard Island and McDonald Islands', 1], ['Honduras', 63], ['Hungary', 15], ['Iceland', 93], ['India', 169], ['Indonesia', 56], ['Iran', 944], ['Ireland', 6], ['Israel', 887], ['Italy', 242], ['Japan', 222], ['Jordan', 31], ['Kazakhstan', 125], ['Kenya', 481], ['Kenya, Mozambique', 1], ['Kyrgyzstan', 71], ['Laos', 11], ['Liberia', 2], ['Luxembourg', 16], ['Macedonia', 125], ['Madagascar', 35], ['Malaysia', 98], ['Maldives', 3], ['Martinique', 2], ['Mayotte', 2], ['Mexico', 50], ['Moldova', 4], ['Monaco', 1], ['Mongolia', 14], ['Morocco', 6], ['Mozambique', 5], ['Myanmar', 2], ['Namibia', 95], ['Nepal', 3], ['Netherlands', 7], ['New Caledonia', 5], ['New Zealand', 191], ['Nigeria', 20], ['Norway', 368], ['Oman', 2648], ['Pakistan', 1], ['Palestine', 283], ['Panama', 10], ['Papua New Guinea', 5], ['Paraguay', 47], ['Peru', 98], ['Philippines', 17], ['Poland', 450], ['Portugal', 51], ['Puerto Rico', 2], ['Romania', 51], ['Russia', 1297], ['Rwanda', 3], ['RĂ©union', 2], ['Saint Barthelemy', 2], ['Saudi Arabia', 15], ['Serbia', 175], ['Singapore', 12], ['Slovakia', 60], ['Slovenia', 2], ['South Africa', 604], ['South Korea', 53], ['Spain', 56], ['Sri Lanka', 24], ['Sudan', 4], ['Suriname', 12], ['Swaziland', 2], ['Sweden', 839], ['Switzerland', 37], ['Syria', 4], ['Taiwan', 2], ['Tajikistan', 9], ['Tanzania', 5], ['Thailand', 120], ['Trinidad and Tobago', 3], ['Tunisia', 6], ['Turkey', 580], ['Turkmenistan', 1], ['Turks and Caicos Islands', 1], ['Uganda', 1], ['Ukraine', 249], ['United Arab Emirates', 1], ['United Kingdom', 13], ['United States of America', 1181], ['Uzbekistan', 1], ['Vietnam', 395], ['Yemen', 1], ['Zimbabwe', 1], ['england uk', 1], ['federal states of micronesia', 2], ['reunion island', 1], ['tianlin county', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=31243', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 149, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);