function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3201], ['Angola', 2], ['Antigua and Barbuda', 1], ['Argentina', 20], ['Australia', 20], ['Belize', 1], ['Bolivia', 14], ['Botswana', 5], ['Brazil', 175], ['Brunei', 11], ['Burkina Faso', 1], ['Cameroon', 4], ['Central African Republic', 411], ['China', 1728], ['Colombia', 15], ['Comoros', 5], ['Costa Rica', 5], ['Cuba', 6], ['Democratic Republic of the Congo', 31], ['Ecuador', 24], ['El Salvador', 9], ['Ethiopia', 1], ['France', 4], ['French Guiana', 41], ['Ghana', 4], ['Guam', 1], ['Guatemala', 2], ['Guinea-Bissau', 2], ['Guyana', 2], ['Heard Island and McDonald Islands', 4], ['Honduras', 20], ['Iceland', 27], ['India', 5], ['Indonesia', 9], ['Iran', 60], ['Israel', 5], ['Italy', 18], ['Ivory Coast', 5], ['Japan', 1], ['Kenya', 28], ['Laos', 6], ['Lebanon', 1], ['Madagascar', 514], ['Malawi', 11], ['Malaysia', 66], ['Martinique', 1], ['Mauritius', 14], ['Mayotte', 1], ['Mexico', 33], ['Moldova', 2], ['Morocco', 40], ['Morocco, Western Sahara', 1], ['Mozambique', 3], ['Myanmar', 45], ['Namibia', 1], ['Nicaragua', 2], ['Nigeria', 3], ['Palau', 1], ['Palestine', 2], ['Panama', 5], ['Paraguay', 7], ['Peru', 72], ['Philippines', 8], ['Portugal', 90], ['Republic of the Congo', 5], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 1], ['Senegal', 4], ['Serbia', 2], ['Sierra Leone', 5], ['Somalia', 1], ['South Africa', 2], ['Spain', 24], ['Sri Lanka', 2], ['Sudan', 11], ['Suriname', 14], ['Tanzania', 4], ['Thailand', 22], ['Togo', 4], ['Trinidad and Tobago', 4], ['Turkey', 1], ['United Kingdom', 8], ['United States of America', 2], ['Uzbekistan', 1], ['Venezuela', 17], ['Vietnam', 21], ['Zambia', 3], ['Zimbabwe', 5], ['indes', 2], ['vincent', 1], ['wales island', 12] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=7037', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 91, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);