function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 580], ['Antarctica', 22], ['Argentina', 3], ['Austria', 2], ['Belgium', 36], ['Brazil', 96], ['Canada', 28], ['Chile', 1], ['China', 57], ['Colombia', 5], ['Croatia', 7030], ['Cuba', 1], ['Democratic Republic of the Congo', 1], ['Denmark', 3], ['Ecuador', 1], ['Egypt', 1], ['Falkland Islands', 1], ['Finland', 2], ['France', 11], ['French Southern Territories', 3], ['Germany', 15], ['Greenland', 4], ['Guam', 10], ['Guatemala', 2], ['Honduras', 3], ['Hong Kong', 17], ['Iceland', 2], ['India', 12], ['Indonesia', 17], ['Iran', 9], ['Iraq', 2], ['Italy', 2], ['Jamaica', 1], ['Japan', 8], ['Kenya', 1], ['Laos', 2], ['Macedonia', 26], ['Malawi', 2], ['Malaysia', 1], ['Marshall Islands', 2], ['Mauritius', 1], ['Mexico', 2], ['Micronesia', 1], ['Netherlands', 1], ['New Zealand', 8], ['Norway', 1], ['Oman', 1], ['Palau', 1], ['Papua New Guinea', 2], ['Peru', 1], ['Philippines', 231], ['Poland', 6], ['Portugal', 6], ['Puerto Rico', 2], ['Republic of the Congo', 1], ['Romania', 3], ['Russia', 52], ['Senegal', 1], ['Singapore', 1], ['South Africa', 5], ['South Korea', 6], ['Spain', 8], ['Sri Lanka', 4], ['Sweden', 6], ['Switzerland', 2], ['Tanzania', 18], ['Turkey', 13], ['Ukraine', 6], ['United Kingdom', 18], ['United States of America', 97], ['Vietnam', 1], ['Zambia', 44], ['mahe island', 1], ['republic of north macedonia', 2], ['reunion island', 1], ['unites states', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=8577', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);