function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 6673], ['Afghanistan', 2], ['Algeria', 3], ['Angola', 2], ['Argentina', 7], ['Australia', 24], ['Austria', 2], ['Bahamas', 2], ['Bangladesh', 6], ['Belgium', 1], ['Belize', 2], ['Bhutan', 26], ['Bolivia', 18], ['Bosnia and Herzegovina', 2], ['Brazil', 352], ['Bulgaria', 2], ['Burundi', 1], ['Cambodia', 3], ['Cameroon', 39], ['Central African Republic', 3], ['Chile', 1], ['China', 1037], ['Colombia', 1114], ['Comoros', 33], ['Costa Rica', 494], ['Croatia', 3], ['Cuba', 3], ['Democratic Republic of the Congo', 10], ['Dominica', 1], ['Dominican Republic', 6], ['Ecuador', 104], ['El Salvador', 1], ['Equatorial Guinea', 29], ['Estonia', 1], ['Ethiopia', 2], ['Fiji', 9], ['France', 16], ['French Guiana', 5], ['French Polynesia', 2], ['Gabon', 31], ['Georgia', 1], ['Germany', 1], ['Gibraltar', 3], ['Greece', 43], ['Greece, Iceland', 1], ['Grenada', 2], ['Guadeloupe', 5], ['Guatemala', 4], ['Guinea-Bissau', 2], ['Guyana', 7], ['Haiti', 2], ['Honduras', 4], ['Hong Kong', 5], ['Hungary', 16], ['India', 167], ['India, Bangladesh, Myanmar, Thailand', 1], ['India, Myanmar', 2], ['India, Myanmar, Thailand', 1], ['Indonesia', 48], ['Iran', 1], ['Italy', 47], ['Jamaica', 7], ['Japan', 95], ['Jordan', 3], ['Kazakhstan', 1], ['Kenya', 39], ['Laos', 25], ['Lebanon', 1], ['Liberia', 1], ['Madagascar', 699], ['Malawi', 21], ['Malaysia', 445], ['Maldives', 1], ['Martinique', 2], ['Mauritius', 40], ['Mayotte', 5], ['Mexico', 48], ['Mongolia', 2], ['Mozambique', 14], ['Myanmar', 1072], ['Myanmar, Thailand', 3], ['Nepal', 63], ['New Caledonia', 2001], ['New Zealand', 5], ['Nicaragua', 2], ['Nigeria', 5], ['Panama', 57], ['Papua New Guinea', 21], ['Paraguay', 3], ['Peru', 192], ['Philippines', 22], ['Portugal', 1], ['Puerto Rico', 1], ['Republic of the Congo', 1], ['Romania', 7], ['Russia', 5], ['Rwanda', 6], ['RĂ©union', 90], ['Saint Pierre and Miquelon', 1], ['Samoa', 20], ['Sao Tome and Principe', 13], ['Serbia', 1], ['Seychelles', 10], ['Singapore', 9], ['Slovakia', 2], ['Solomon Islands', 1], ['South Africa', 759], ['South Korea', 1], ['Spain', 7], ['Sri Lanka', 40], ['Suriname', 1], ['Swaziland', 8], ['Sweden', 2], ['Switzerland', 1], ['Taiwan', 35], ['Tanzania', 16], ['Thailand', 937], ['Togo', 1], ['Trinidad and Tobago', 3], ['Turkey', 1], ['Uganda', 2], ['Ukraine', 20], ['United Kingdom', 4], ['United States of America', 115], ['Uruguay', 4], ['Vanuatu', 3], ['Venezuela', 67], ['Vietnam', 366], ['Virgin Islands', 1], ['Zambia', 5], ['Zambia, Malawi, Uganda, Kenya', 1], ['Zimbabwe', 31], ['c hina', 1], ['ile maurice', 1], ['tonga island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=17933', 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);