function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10999], ['Afghanistan', 81], ['Algeria', 1], ['American Samoa', 1], ['Angola', 1], ['Argentina', 499], ['Armenia', 1], ['Australia', 708], ['Austria', 7], ['Azerbaijan', 2], ['Belgium', 2], ['Belize', 1], ['Bhutan', 1], ['Bolivia', 39], ['Bonaire, Sint Eustatius and Saba', 3], ['Brazil', 581], ['British Virgin Islands', 4], ['Bulgaria', 38], ['Cambodia', 25], ['Cameroon', 2], ['Canada', 9], ['Central African Republic', 1], ['Chad', 4], ['Chile', 667], ['China', 32337872], ['Colombia', 10], ['Costa Rica', 5], ['Croatia', 2], ['Cuba', 9], ['Curaçao', 1], ['Czech Republic', 634], ['Democratic Republic of the Congo', 14], ['Dominican Republic', 2], ['Ecuador', 3], ['Ethiopia', 10], ['Fiji', 13], ['France', 3], ['French Guiana', 72], ['Georgia', 2], ['Germany', 3], ['Greece', 3], ['Grenada', 3], ['Guadeloupe', 13], ['Guam', 14], ['Guatemala', 3], ['Guinea-Bissau', 4], ['Guyana', 4], ['Haiti', 2], ['Heard Island and McDonald Islands', 1], ['Honduras', 2], ['Hungary', 1], ['Iceland', 10], ['India', 385], ['Indonesia', 2935], ['Iran', 456], ['Iraq', 18], ['Jamaica', 2], ['Japan', 212], ['Kazakhstan', 2], ['Kenya', 126], ['Kyrgyzstan', 1], ['Laos', 847], ['Latvia', 1], ['Lebanon', 14], ['Macedonia', 1], ['Madagascar', 33], ['Malawi', 5], ['Malaysia', 869], ['Mauritania', 2], ['Mexico', 759], ['Mongolia', 5], ['Montserrat', 6], ['Morocco', 137], ['Mozambique', 9], ['Myanmar', 59], ['Nepal', 17], ['Netherlands', 2], ['Nicaragua', 1], ['North Korea', 7], ['Norway', 1], ['Oman', 18], ['Pakistan', 6], ['Panama', 354], ['Papua New Guinea', 22], ['Paraguay', 66], ['Peru', 49], ['Philippines', 1587], ['Poland', 3], ['Puerto Rico', 9], ['Romania', 8], ['Russia', 25], ['Rwanda', 1], ['Saint Pierre and Miquelon', 33], ['Saudi Arabia', 5], ['Serbia', 6], ['Sierra Leone', 36], ['Singapore', 29], ['Slovakia', 112], ['Slovenia', 9], ['Solomon Islands', 3], ['Somalia', 6], ['South Africa', 37], ['South Korea', 20], ['Spain', 1], ['Sri Lanka', 15], ['Switzerland', 9], ['Syria', 96], ['Taiwan', 209], ['Tanzania', 105], ['Thailand', 217], ['Tonga', 1], ['Trinidad and Tobago', 7], ['Turkey', 57], ['Uganda', 10], ['Ukraine', 7], ['United Kingdom', 6680], ['United States Virgin Islands', 2], ['United States of America', 93], ['Venezuela', 1], ['Vietnam', 1122], ['Yemen', 55], ['Zambia', 36], ['Zimbabwe', 10], ['argt', 1], ['brit. guiana.', 1], ['burmah', 1], ['laοs-ne', 1], ['new guinea', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=32370486', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 128, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);