function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 7333], ['Afghanistan', 145], ['Albania', 1], ['Angola', 26], ['Argentina', 436], ['Australia', 36], ['Azerbaijan', 1], ['Bahamas', 1], ['Bangladesh', 2], ['Belize', 1], ['Bolivia', 478], ['Botswana', 3], ['Brazil', 130379], ['Cambodia', 3], ['Cameroon', 45], ['Canada', 1], ['Chile', 1], ['China', 267], ['Colombia', 3012], ['Costa Rica', 2305], ['Czech Republic', 4], ['Democratic Republic of the Congo', 13], ['Denmark', 5], ['Ecuador', 130], ['El Salvador', 17], ['Eritrea', 1990], ['Ethiopia', 269], ['Fiji', 3], ['France', 1], ['French Guiana', 1117], ['Germany', 3], ['Ghana', 4], ['Guam', 26], ['Guatemala', 44], ['Guinea-Bissau', 6], ['Guyana', 24], ['Honduras', 15], ['Hong Kong', 2], ['Hungary', 1], ['Iceland', 19], ['India', 2528], ['Indonesia', 3], ['Iran', 3], ['Italy', 1], ['Jamaica', 5], ['Japan', 215], ['Kenya', 44], ['Laos', 24], ['Lebanon', 1], ['Madagascar', 87], ['Malawi', 48], ['Malaysia', 32], ['Marshall Islands', 7], ['Mexico', 226], ['Mozambique', 1], ['Myanmar', 2], ['Namibia', 1], ['Nepal', 1], ['New Caledonia', 2], ['Nicaragua', 2], ['Nigeria', 1], ['Pakistan', 15], ['Panama', 198], ['Papua New Guinea', 129], ['Paraguay', 119], ['Peru', 1192], ['Philippines', 7], ['Republic of the Congo', 215], ['Saint Helena, Ascension and Tristan da Cunha', 20], ['Saint Kitts and Nevis', 1], ['Saint Lucia', 3], ['Sao Tome and Principe', 1], ['Seychelles', 2], ['Sierra Leone', 4], ['Solomon Islands', 356], ['South Africa', 114], ['South Korea', 46], ['Spain', 0], ['Sri Lanka', 3], ['Sudan', 15], ['Suriname', 52], ['Switzerland', 15], ['Taiwan', 7], ['Tanzania', 6], ['Thailand', 1], ['Trinidad and Tobago', 26], ['Turkey', 186], ['Uganda', 10], ['United Kingdom', 2], ['United States of America', 48], ['Uruguay', 57], ['Venezuela', 4127], ['Vietnam', 5], ['Zambia', 15], ['Zimbabwe', 2], ['guatimala', 2], ['guyane francaise', 1], ['ucayali', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=158406', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 98, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);