function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1536], ['Afghanistan', 9], ['Argentina', 20], ['Australia', 24], ['Austria', 5], ['Bahrain', 1], ['Bangladesh', 1], ['Belarus', 1], ['Belize', 1], ['Benin', 1], ['Bolivia', 8], ['Brazil', 652], ['Cameroon', 1], ['Canada', 97], ['Cape Verde', 1], ['Central African Republic', 47], ['China', 373305], ['Colombia', 90], ['Costa Rica', 71], ['Croatia', 4], ['Cuba', 4], ['Czech Republic', 10], ['Democratic Republic of the Congo', 3], ['Denmark', 31], ['Dominican Republic', 19], ['Ecuador', 13], ['El Salvador', 51], ['Estonia', 1], ['Finland', 4], ['France', 37], ['French Guiana', 212], ['Gabon', 1], ['Germany', 3], ['Ghana', 3], ['Greece', 1], ['Greenland', 1], ['Guatemala', 2], ['Guinea-Bissau', 1501], ['Haiti', 100], ['Honduras', 12], ['Hong Kong', 1], ['Hungary', 19], ['Iceland', 3], ['India', 139], ['Indonesia', 398], ['Israel', 3], ['Italy', 28], ['Ivory Coast', 958], ['Jamaica', 6], ['Kazakhstan', 2], ['Kenya', 2], ['Kyrgyzstan', 9], ['Madagascar', 2], ['Malaysia', 3], ['Mexico', 259], ['New Zealand', 6], ['Nicaragua', 1], ['Norway', 1], ['Oman', 5], ['Pakistan', 1897], ['Panama', 65], ['Papua New Guinea', 6], ['Paraguay', 1], ['Peru', 7], ['Poland', 1], ['Portugal', 6], ['Puerto Rico', 43], ['Russia', 107], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Samoa', 13], ['Sao Tome and Principe', 5], ['Singapore', 2], ['Slovakia', 30], ['South Korea', 36], ['Spain', 32], ['Sri Lanka', 376], ['Sweden', 21], ['Switzerland', 3], ['Taiwan', 7], ['Tajikistan', 14], ['Tanzania', 1], ['Thailand', 96], ['Togo', 1], ['Trinidad and Tobago', 1], ['Turkey', 26], ['Turkmenistan', 2], ['Uganda', 2], ['Ukraine', 8], ['United Kingdom', 3], ['United States Virgin Islands', 4], ['United States of America', 13726], ['United States of America, Canada', 1], ['Uzbekistan', 2], ['Venezuela', 12], ['Vietnam', 471], ['Virgin Islands', 3], ['Zambia', 3], ['palau island', 1], ['uk england', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=396766', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 99, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);