function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4181], ['Albania', 3], ['Antarctica', 22], ['Argentina', 58], ['Australia', 23], ['Austria', 49], ['Bahamas', 1], ['Belarus', 1], ['Belgium', 35], ['Belize', 2], ['Bolivia', 11], ['Bosnia and Herzegovina', 68], ['Brazil', 894], ['Cameroon', 6], ['Canada', 34], ['Chile', 29], ['China', 161], ['Colombia', 121], ['Costa Rica', 49], ['Croatia', 9553], ['Cuba', 4], ['CuraƧao', 2], ['Denmark', 3], ['Dominica', 3], ['Dominican Republic', 1], ['Ecuador', 152], ['Egypt', 4], ['Falkland Islands', 28], ['Fiji', 8], ['Finland', 4], ['France', 173], ['French Polynesia', 2], ['French Southern Territories', 3], ['Georgia', 3], ['Germany', 21], ['Ghana', 1], ['Greece', 141], ['Greenland', 4], ['Guam', 10], ['Guatemala', 2], ['Guinea-Bissau', 1], ['Guyana', 9], ['Haiti', 5], ['Honduras', 5], ['Hong Kong', 22], ['Hungary', 3], ['Iceland', 26], ['Iceland, Samoa', 1], ['India', 36], ['Indonesia', 51], ['Iran', 14], ['Iraq', 2], ['Israel', 1], ['Italy', 24], ['Jamaica', 8], ['Japan', 15], ['Jordan', 1], ['Kenya', 7], ['Laos', 2], ['Latvia', 33], ['Lebanon', 2], ['Macedonia', 24], ['Madagascar', 2], ['Malawi', 3], ['Malaysia', 17], ['Maldives', 4], ['Marshall Islands', 1], ['Mauritius', 7], ['Mexico', 44], ['Morocco', 1], ['Mozambique', 7], ['Myanmar', 2], ['Nepal', 10], ['Netherlands', 1], ['New Caledonia', 203], ['New Zealand', 48], ['Nicaragua', 1], ['Norway', 5], ['Oman', 2], ['Palau', 498], ['Panama', 40], ['Panama, India', 1], ['Papua New Guinea', 21], ['Paraguay', 26], ['Peru', 147], ['Philippines', 246], ['Poland', 22], ['Portugal', 8], ['Puerto Rico', 3], ['Romania', 7], ['Russia', 64], ['Saint Vincent and the Grenadines', 2], ['Samoa', 3], ['Saudi Arabia', 2], ['Senegal', 1], ['Serbia', 557], ['Seychelles', 2], ['Singapore', 8], ['Slovakia', 5], ['Slovenia', 17], ['South Africa', 8], ['South Georgia and the South Sandwich Islands', 31], ['South Korea', 31], ['Spain', 382], ['Sri Lanka', 5], ['Suriname', 18], ['Svalbard and Jan Mayen', 1], ['Sweden', 6], ['Switzerland', 2], ['Taiwan', 66], ['Tanzania', 18], ['Trinidad and Tobago', 5], ['Turkey', 51], ['Tuvalu', 1], ['Ukraine', 8], ['United Arab Emirates', 1], ['United Kingdom', 26], ['United States of America', 105], ['Uruguay', 9], ['Venezuela', 364], ['Vietnam', 23], ['Virgin Islands', 2], ['Zambia', 44], ['mahe island', 1], ['republic of north macedonia', 2], ['reunion island', 1], ['unites states', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=19412', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 127, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);