function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 8738], ['Algeria', 28], ['American Samoa', 22], ['Argentina', 52], ['Australia', 201], ['Austria, Italy, Slovakia', 1], ['Azerbaijan', 3], ['Belgium', 3], ['Belize', 1], ['Bolivia', 10], ['Bosnia and Herzegovina', 2], ['Brazil', 1092], ['Cambodia', 10], ['Canada', 24], ['Chile', 5], ['China', 1349], ['Colombia', 208], ['Costa Rica', 1], ['Denmark', 13], ['Dominica', 1], ['France', 86], ['Georgia', 13], ['Germany', 2], ['Germany, Poland', 1], ['Greece', 5], ['Greenland', 3], ['Guadeloupe', 1], ['Guyana', 1], ['Hungary', 177], ['Hungary, Poland', 1], ['Iceland', 3], ['India', 104], ['Indonesia', 35], ['Iran', 110], ['Italy', 107], ['Japan', 35], ['Kenya', 1], ['Madagascar', 454], ['Mexico', 14], ['Mexico, Cuba, Paraguay', 1], ['Moldova', 39], ['Mongolia', 7], ['Morocco', 1], ['Nepal', 2], ['New Caledonia', 1], ['New Zealand', 3], ['North Korea', 5], ['Norway', 1], ['Panama', 2], ['Papua New Guinea', 85], ['Paraguay', 6], ['Peru', 35], ['Philippines', 1], ['Poland', 578], ['Poland, Slovakia', 1], ['Poland, Ukraine', 1], ['Portugal', 1], ['Puerto Rico', 12], ['Russia', 570], ['Saint Helena, Ascension and Tristan da Cunha', 76], ['Slovakia', 113], ['Solomon Islands', 1], ['South Africa', 16], ['South Korea', 111], ['Spain', 681], ['Svalbard and Jan Mayen', 1], ['Sweden', 1], ['Switzerland', 4], ['Thailand', 1424], ['Ukraine', 13], ['United Kingdom', 1], ['United States of America', 114], ['Vanuatu', 318], ['Vietnam', 22] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=17165', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 74, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);