function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 12218], ['Afghanistan', 5], ['Algeria', 0], ['Angola', 1], ['Argentina', 4], ['Armenia', 3], ['Australia', 9], ['Austria', 22], ['Azerbaijan', 192], ['Bahamas', 15], ['Belgium', 3], ['Benin', 1], ['Bhutan', 81], ['Bolivia', 4], ['Bosnia and Herzegovina', 1], ['Brazil', 431], ['Bulgaria', 40], ['Cambodia', 8], ['Cameroon', 278], ['Canada', 44], ['Chile', 2], ['China', 866], ['Colombia', 4], ['Costa Rica', 1601], ['Croatia', 126], ['Cuba', 9], ['Democratic Republic of the Congo', 8135], ['Dominica', 22], ['Dominican Republic', 1], ['Ecuador', 7], ['El Salvador', 1], ['Equatorial Guinea', 1400], ['Fiji', 1], ['Finland', 1], ['France', 235], ['French Guiana', 3], ['Gabon', 1], ['Germany', 2], ['Greece', 4], ['Grenada', 9], ['Guadeloupe', 28], ['Guatemala', 86], ['Guinea-Bissau', 9], ['Heard Island and McDonald Islands', 13], ['Honduras', 1], ['Hong Kong', 29], ['Hungary', 3], ['Iceland', 8], ['India', 49], ['Indonesia', 45], ['Iran', 1], ['Italy', 54], ['Ivory Coast', 0], ['Jamaica', 1], ['Japan', 3808], ['Jersey', 1], ['Kazakhstan', 5], ['Kenya', 4270], ['Laos', 126], ['Latvia', 1], ['Macedonia', 34], ['Madagascar', 2], ['Malawi', 1506], ['Malaysia', 10], ['Malta', 1], ['Mauritius', 2], ['Mexico', 929], ['Mongolia', 1], ['Mozambique', 2], ['Myanmar', 2], ['Netherlands', 2], ['New Zealand', 1], ['Nigeria', 2], ['North Korea', 5], ['Panama', 13], ['Papua New Guinea', 16], ['Paraguay', 1], ['Peru', 28], ['Puerto Rico', 1], ['Romania', 1], ['Russia', 187], ['RĂ©union', 105], ['Saint Lucia', 7], ['Saint Pierre and Miquelon', 1], ['Samoa', 1], ['Sao Tome and Principe', 2], ['Serbia', 39], ['Seychelles', 5], ['Sierra Leone', 1], ['Slovenia', 5], ['South Africa', 53], ['South Korea', 213], ['Spain', 3], ['Sri Lanka', 25], ['Sudan', 474], ['Sweden', 1], ['Switzerland', 6], ['Taiwan', 1091], ['Tajikistan', 1], ['Tanzania', 1761], ['Thailand', 869], ['Tonga', 1], ['Trinidad and Tobago', 4], ['Turkey', 11], ['Turkmenistan', 5], ['Uganda', 1752], ['Ukraine', 1], ['United Kingdom', 16], ['United States of America', 589], ['Venezuela', 79], ['Vietnam', 38], ['Wake Island', 4], ['Zambia', 2], ['Zimbabwe', 4], ['maldive laccadive', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=44244', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 115, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);