function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1217], ['Afghanistan', 3], ['Albania', 1], ['Algeria', 4], ['Angola', 10], ['Argentina', 701], ['Armenia', 4], ['Australia', 5], ['Austria', 3], ['Benin', 1], ['Bhutan', 3], ['Bolivia', 38], ['Botswana', 19], ['Brazil', 68], ['Bulgaria', 2], ['Burundi', 2], ['Cameroon', 8], ['Canada', 2], ['Cape Verde', 2], ['Central African Republic', 7], ['Chad', 1], ['Chile', 40], ['China', 19], ['Colombia', 36], ['Comoros', 1], ['Costa Rica', 771], ['Cuba', 10], ['Cyprus', 1], ['Czech Republic', 1], ['Democratic Republic of the Congo', 19], ['Denmark', 1], ['Dominican Republic', 3], ['Ecuador', 8], ['Egypt', 2], ['Eritrea', 2], ['Ethiopia', 85], ['Fiji', 1], ['Finland', 1], ['France', 3], ['French Guiana', 2], ['Gabon', 11], ['Georgia', 4], ['Germany', 15], ['Germany, Switzerland', 1], ['Greece', 5], ['Grenada', 3], ['Guam', 4], ['Guatemala', 25], ['Guinea-Bissau', 29], ['Guyana', 3], ['Haiti', 1], ['Hong Kong', 1], ['Iceland', 1], ['India', 22], ['Indonesia', 2], ['Iran', 2], ['Israel', 4], ['Italy', 4], ['Ivory Coast', 4], ['Jamaica', 2], ['Japan', 18], ['Kazakhstan', 1], ['Kenya', 42], ['Lebanon', 3], ['Lesotho', 1], ['Liberia', 3], ['Macedonia', 1], ['Madagascar', 40], ['Malawi', 1], ['Malaysia', 7], ['Mauritania', 3], ['Mauritius', 1], ['Mexico', 125], ['Mongolia', 2], ['Morocco', 7], ['Mozambique', 1], ['Myanmar', 16], ['Namibia', 342], ['Nepal', 30], ['New Caledonia', 1], ['New Zealand', 8], ['Nicaragua', 2], ['Nigeria', 7], ['Norway', 1], ['Pakistan', 2], ['Panama', 37], ['Papua New Guinea', 8], ['Paraguay', 96], ['Peru', 43], ['Philippines', 1], ['Portugal', 1], ['Puerto Rico', 1], ['Republic of the Congo', 3], ['Romania', 3], ['Russia', 4], ['Rwanda', 7], ['RĂ©union', 1], ['Saint Vincent and the Grenadines', 1], ['Saudi Arabia', 0], ['Senegal', 7], ['Serbia', 1], ['Sierra Leone', 2], ['Singapore', 5], ['Slovakia', 1], ['Somalia', 1], ['South Africa', 139], ['South Korea', 1], ['Spain', 5], ['Sri Lanka', 9], ['Sudan', 21], ['Sweden', 3], ['Switzerland', 2], ['Syria', 2], ['Taiwan', 9], ['Tajikistan', 1], ['Tanzania', 8], ['Thailand', 4], ['Trinidad and Tobago', 4], ['Turkey', 6], ['Turkey, Czech Republic, Austria', 1], ['Turkmenistan', 1], ['Uganda', 5], ['United Kingdom', 1], ['United States of America', 7], ['Uruguay', 37], ['Uzbekistan', 1], ['Venezuela', 35], ['Vietnam', 1], ['Zambia', 9], ['Zimbabwe', 16], ['ile san cristobal', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4467', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 131, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);