function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5534], ['Argentina', 8587], ['Armenia', 3], ['Australia', 116], ['Austria', 1], ['Bangladesh', 11], ['Belize', 1], ['Bhutan', 1], ['Bolivia', 184], ['Brazil', 515], ['Brunei', 2], ['Bulgaria', 4], ['Cambodia', 158], ['Canada', 5], ['Chile', 243], ['China', 6340], ['Colombia', 92], ['Costa Rica', 20], ['Cuba', 23], ['Czech Republic', 1521], ['Democratic Republic of the Congo', 12], ['Democratic Republic of the Congo, Tanzania', 1], ['Ecuador', 1], ['El Salvador', 6], ['Ethiopia', 964], ['Finland', 2], ['France', 7], ['Germany', 31], ['Greece', 81], ['Grenada', 2], ['Guadeloupe', 1], ['Guatemala', 103], ['Guinea-Bissau', 23], ['Guyana', 7], ['Honduras', 407], ['Hong Kong', 11], ['Iceland', 41], ['India', 1205], ['Indonesia', 33], ['Iran', 211], ['Ireland', 1], ['Israel', 4], ['Italy', 242], ['Japan', 69], ['Jordan', 1], ['Kenya', 7], ['Laos', 6715], ['Lebanon', 167], ['Madagascar', 12], ['Malaysia', 71], ['Mexico', 430], ['Mongolia', 1], ['Morocco', 15], ['Mozambique', 7], ['Myanmar', 543], ['Namibia', 22], ['Nepal', 26], ['Nicaragua', 125], ['North Korea', 4], ['Panama', 119], ['Paraguay', 42], ['Peru', 60], ['Philippines', 115], ['Poland', 58], ['Puerto Rico', 23], ['Russia', 78], ['Saint Kitts and Nevis', 67], ['Saint Vincent and the Grenadines', 1], ['Serbia', 1], ['Slovakia', 2], ['South Africa', 96], ['South Korea', 147], ['Sri Lanka', 520], ['Switzerland', 14], ['Syria', 39], ['Taiwan', 50], ['Tanzania', 12], ['Thailand', 884], ['Trinidad and Tobago', 17], ['Tunisia', 3], ['Turkey', 74], ['Uganda', 4], ['United Kingdom', 3], ['United States of America', 857], ['Uruguay', 4], ['Venezuela', 566], ['Vietnam', 5015], ['Yemen', 66], ['Zambia', 5], ['Zimbabwe', 4], ['argentina / formosa', 1], ['indes', 1], ['malayasia', 1], ['republic of yemen / socotra', 1], ['socotra island', 73] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=43995', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 95, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);