function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2770], ['Algeria', 31], ['Argentina', 12], ['Australia', 94], ['Austria', 7], ['Azerbaijan', 2], ['Belgium', 1], ['Bolivia', 762], ['Bosnia and Herzegovina', 2], ['Brazil', 6059], ['Bulgaria', 5], ['Canada', 2224], ['Chile', 21], ['China', 37], ['Colombia', 40], ['Costa Rica', 25], ['Czech Republic', 1659], ['Democratic Republic of the Congo', 2], ['Denmark', 2], ['Ecuador', 1], ['Egypt', 4], ['Finland', 6], ['France', 377], ['French Guiana', 8], ['Georgia', 2], ['Germany', 14], ['Greece', 1], ['Guyana', 1], ['Iceland', 1], ['Indonesia', 37], ['Iran', 9], ['Israel', 1], ['Italy', 43], ['Ivory Coast', 1], ['Japan', 3], ['Kazakhstan', 6], ['Kenya', 4], ['Laos', 2], ['Malaysia', 3], ['Mexico', 3], ['Mongolia', 17], ['Morocco', 1], ['Mozambique', 1], ['Nepal', 15], ['Netherlands', 1], ['New Zealand', 843], ['Nigeria', 5], ['Norway', 7], ['Panama', 2], ['Papua New Guinea', 2], ['Peru', 78], ['Poland', 1], ['Portugal', 25], ['Romania', 1], ['Russia', 344], ['Saint Helena, Ascension and Tristan da Cunha', 3], ['Senegal', 2], ['Serbia', 206], ['Singapore', 62], ['Sint Martin', 1], ['Slovakia', 3], ['Slovenia', 7], ['South Africa', 12], ['South Korea', 2], ['Spain', 4], ['Sweden', 207], ['Sweden, Norway', 1], ['Switzerland', 21], ['Syria', 3], ['Taiwan', 22], ['Tanzania', 2], ['Thailand', 686], ['Turkey', 21], ['Ukraine', 4], ['United Kingdom', 10], ['United States of America', 1079], ['Vanuatu', 71], ['Vietnam', 57], ['Zimbabwe', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=18115', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 79, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);