function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10459], ['Afghanistan', 8], ['Algeria', 187], ['Argentina', 141], ['Australia', 1], ['Bhutan', 10], ['Bolivia', 12], ['Brazil', 3028], ['Brunei', 6], ['Burkina Faso', 2], ['Cambodia', 20], ['Cameroon', 46], ['Cape Verde', 1], ['Central African Republic', 1], ['China', 983], ['Colombia', 1], ['Comoros', 2], ['Costa Rica', 3], ['Cuba', 5], ['Democratic Republic of the Congo', 44], ['Dominican Republic', 3], ['Egypt', 2], ['Ethiopia', 14], ['Fiji', 1], ['Finland', 1], ['France', 78], ['French Guiana', 7], ['Ghana', 110], ['Greece', 1616], ['Guinea-Bissau', 13], ['Haiti', 4], ['Hong Kong', 1], ['India', 689], ['Indonesia', 277], ['Iran', 10], ['Italy', 3], ['Ivory Coast', 6], ['Japan', 112], ['Kenya', 4], ['Laos', 589], ['Liberia', 4], ['Madagascar', 525], ['Malaysia', 1072], ['Mexico', 23], ['Morocco', 1], ['Mozambique', 1], ['Myanmar', 29], ['Nepal', 72], ['New Caledonia', 383], ['New Zealand', 7], ['Nigeria', 2], ['Pakistan', 23], ['Panama', 546], ['Papua New Guinea', 41], ['Peru', 1], ['Philippines', 159], ['Poland', 31], ['Russia', 289], ['Sao Tome and Principe', 2], ['Seychelles', 1], ['Sierra Leone', 3], ['Solomon Islands', 7], ['South Africa', 1962], ['South Korea', 133], ['Spain', 1], ['Sri Lanka', 38], ['Sudan', 3], ['Suriname', 1], ['Switzerland', 888], ['Taiwan', 382], ['Tajikistan', 1], ['Tanzania', 50], ['Thailand', 2473], ['Tunisia', 1], ['Uganda', 2], ['United Kingdom', 350], ['Uruguay', 25], ['Uzbekistan', 2], ['Venezuela', 1], ['Vietnam', 385], ['Yemen', 1], ['Zimbabwe', 44] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=28465', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 82, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);