function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 13796], ['Botswana', 1], ['Brazil', 1259], ['Bulgaria', 1], ['Cambodia', 23], ['Cameroon', 4], ['Canada', 27], ['Chile', 1], ['China', 154], ['Colombia', 279], ['Democratic Republic of the Congo', 56], ['Fiji', 10], ['France', 92], ['Gabon', 24], ['Germany', 6], ['Guadeloupe', 11], ['Guinea-Bissau', 1], ['Hong Kong', 4], ['Iceland', 1], ['India', 2225], ['Indonesia', 4], ['Italy', 111], ['Japan', 5], ['Laos', 38], ['Lebanon', 1], ['Madagascar', 9], ['Malaysia', 2515], ['Malaysia, Singapore', 2], ['Mauritius', 1], ['Mexico', 2], ['Mozambique', 1], ['Myanmar', 7], ['Myanmar, India, Thailand, Vietnam', 1], ['Namibia', 2], ['New Caledonia', 14], ['Nigeria', 2], ['Norway', 1], ['Panama', 3], ['Peru', 697], ['Philippines', 28], ['Romania', 1], ['Russia', 9], ['Saint Helena, Ascension and Tristan da Cunha', 4], ['Saint Lucia', 4], ['Serbia', 5], ['Singapore', 11], ['Slovenia', 4], ['South Africa', 17], ['South Korea', 82], ['Spain', 1], ['Sri Lanka', 4], ['Suriname, Guyana', 1], ['Sweden', 4], ['Tajikistan', 1], ['Tanzania', 2], ['Thailand', 1634], ['Turkey', 7], ['Turks and Caicos Islands', 1], ['Uganda', 1], ['United Kingdom', 10], ['United States of America', 8], ['Vanuatu', 1], ['Venezuela', 35], ['Vietnam', 573], ['Virgin Islands', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=23840', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 65, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);