function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1282], ['Argentina', 13], ['Australia', 18], ['Austria', 5], ['Bahrain', 1], ['Benin', 1], ['Bolivia', 7], ['Brazil', 449], ['Canada', 97], ['Central African Republic', 47], ['China', 271], ['Colombia', 9], ['Costa Rica', 65], ['Croatia', 4], ['Cuba', 4], ['Czech Republic', 10], ['Democratic Republic of the Congo', 3], ['Denmark', 31], ['Dominican Republic', 19], ['Ecuador', 8], ['El Salvador', 51], ['Estonia', 1], ['Finland', 2], ['France', 31], ['French Guiana', 209], ['Germany', 3], ['Ghana', 3], ['Greenland', 1], ['Guinea-Bissau', 1501], ['Haiti', 100], ['Honduras', 12], ['Hong Kong', 1], ['Hungary', 15], ['Iceland', 3], ['India', 65], ['Indonesia', 398], ['Italy', 26], ['Ivory Coast', 958], ['Jamaica', 4], ['Mexico', 222], ['New Zealand', 6], ['Nicaragua', 1], ['Oman', 4], ['Pakistan', 86], ['Panama', 59], ['Papua New Guinea', 6], ['Paraguay', 1], ['Peru', 1], ['Poland', 1], ['Portugal', 6], ['Puerto Rico', 43], ['Russia', 192], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Samoa', 13], ['Sao Tome and Principe', 3], ['Singapore', 2], ['Slovakia', 30], ['South Korea', 32], ['Spain', 18], ['Sri Lanka', 240], ['Sweden', 6], ['Switzerland', 3], ['Thailand', 37], ['Togo', 1], ['Trinidad and Tobago', 1], ['Turkey', 26], ['Turkmenistan', 2], ['Uganda', 2], ['United States of America', 13706], ['United States of America, Canada', 1], ['Venezuela', 8], ['Vietnam', 469], ['Virgin Islands', 3], ['Zambia', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=20963', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 74, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);