function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 11409], ['Algeria', 141], ['Antigua and Barbuda, Dominica, Saint Lucia', 1], ['Argentina', 517], ['Australia', 174], ['Austria', 5], ['Belize', 68], ['Bhutan', 2], ['Bolivia', 479], ['Bolivia, Peru', 1], ['Botswana', 1], ['Brazil', 3029], ['Brazil, Ecuador', 1], ['Brazil, Guyana, Panama', 1], ['Brunei', 26], ['Burkina Faso', 7], ['Cambodia', 14], ['Cameroon', 3], ['Cameroon, Central African Republic', 6], ['Canada', 8], ['Cape Verde', 1], ['Cayman Islands', 2], ['Central African Republic', 14], ['Central African Republic, Guinea-Bissau', 5], ['Chile', 1942], ['China', 5624], ['China, Japan', 4], ['Colombia', 9277], ['Colombia, Ecuador', 1], ['Costa Rica', 2615], ['Cuba', 4], ['Democratic Republic of the Congo', 6], ['Dominican Republic', 1932], ['Ecuador', 1087], ['Egypt', 3], ['Estonia', 1], ['Ethiopia', 50], ['Fiji', 3], ['Finland', 30], ['France', 956], ['French Guiana', 32], ['Gambia', 2], ['Georgia', 111], ['Germany', 5], ['Ghana', 4], ['Greece', 4], ['Guam', 157], ['Guatemala', 9], ['Guinea-Bissau', 4], ['Guyana', 49], ['Haiti', 1], ['Honduras', 8], ['Hungary', 17], ['Iceland', 66], ['India', 5642], ['Indonesia', 355], ['Iran', 36], ['Iraq', 35], ['Israel', 7], ['Italy', 306], ['Ivory Coast', 5], ['Jamaica', 5], ['Jamaica, Puerto Rico', 7], ['Japan', 141], ['Kazakhstan', 301], ['Kenya', 6], ['Kenya, Lesotho', 972], ['Kyrgyzstan', 266], ['Laos', 1826], ['Lebanon', 1], ['Lesotho', 741], ['Liberia', 14], ['Libya', 1], ['Lithuania', 3], ['Madagascar', 406], ['Malaysia', 2073], ['Maldives', 1], ['Mexico', 3368], ['Mongolia', 38], ['Myanmar', 38], ['Nepal', 110], ['New Zealand', 5], ['Nicaragua', 409], ['Nigeria', 17], ['Oman', 63], ['Pakistan', 868], ['Palau', 1], ['Palestine', 2], ['Panama', 297], ['Papua New Guinea', 29], ['Paraguay', 8], ['Peru', 3300], ['Philippines', 136], ['Puerto Rico', 1], ['Republic of the Congo', 75], ['Russia', 288], ['Saint Kitts and Nevis', 4], ['Saint Lucia', 5], ['Saint Pierre and Miquelon', 11], ['Saint Vincent and the Grenadines', 1], ['Samoa', 11], ['Sao Tome and Principe', 2], ['Saudi Arabia', 411], ['Senegal', 3], ['Serbia', 7], ['Seychelles', 7], ['Singapore', 9], ['South Africa', 3041], ['South Georgia and the South Sandwich Islands', 1], ['South Korea', 1060], ['Spain', 233], ['Sri Lanka', 143], ['Suriname', 8], ['Swaziland', 35], ['Sweden', 1], ['Switzerland', 138], ['Syria', 2], ['Taiwan', 98], ['Tajikistan', 1], ['Thailand', 15545], ['Trinidad and Tobago', 4], ['Turkey', 1], ['Turkmenistan', 70], ['Uganda', 12], ['United Arab Emirates', 8], ['United Kingdom', 657], ['United States of America', 323], ['Uruguay', 29], ['Uzbekistan', 27], ['Vanuatu', 4], ['Venezuela', 38], ['Vietnam', 244], ['Virgin Islands', 2], ['Zambia', 13], ['Zimbabwe', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=84332', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 135, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);