function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 39465], ['\'india', 1], ['Afghanistan', 109], ['Albania', 33], ['Algeria', 252], ['Algeria, Libya, Morocco, Tunisia', 2], ['American Samoa', 9], ['Angola', 31], ['Antigua and Barbuda', 1], ['Argentina', 399], ['Armenia', 389], ['Australia', 318], ['Austria', 15], ['Azerbaijan', 126], ['Bahamas', 1], ['Bangladesh', 5], ['Belize', 3], ['Benin', 1], ['Bhutan', 3], ['Bolivia', 43], ['Bosnia and Herzegovina', 19], ['Botswana', 3], ['Brazil', 5750], ['Brunei', 69], ['Bulgaria', 71], ['Burkina Faso', 28], ['Cambodia', 69], ['Cameroon', 308], ['Canada', 1118], ['Central African Republic', 1240], ['Chad', 15], ['Chile', 22], ['China', 8643], ['Colombia', 4560], ['Colombia, Venezuela, Ecuador, Peru', 1], ['Comoros', 58], ['Costa Rica', 154], ['Croatia', 22], ['Cuba', 392], ['Cyprus', 17], ['Czech Republic', 3], ['Democratic Republic of the Congo', 164], ['Democratic Republic of the Congo, Rwanda', 1], ['Djibouti', 1], ['Dominica', 6], ['Dominican Republic', 5], ['Ecuador', 437], ['Egypt', 36], ['El Salvador', 3], ['Equatorial Guinea', 37], ['Eritrea', 1], ['Ethiopia', 321], ['Fiji', 28], ['Finland', 1], ['France', 220], ['French Guiana', 8710], ['Gabon', 74], ['Gambia', 4], ['Georgia', 113], ['Germany', 29], ['Ghana', 50], ['Greece', 1060], ['Grenada', 5], ['Guadeloupe', 109], ['Guam', 5], ['Guatemala', 687], ['Guinea-Bissau', 331], ['Guyana', 13], ['Haiti', 11], ['Heard Island and McDonald Islands', 15], ['Honduras', 2], ['Hong Kong', 62], ['Hungary', 51], ['Iceland', 995], ['India', 7011], ['Indonesia', 3429], ['Indonesia, Malaysia, Philippines, India, Bangladesh, Vietnam, Th', 1], ['Iran', 597], ['Iraq', 80], ['Israel', 72], ['Italy', 461], ['Ivory Coast', 796], ['Jamaica', 2], ['Japan', 107], ['Jordan', 23], ['Kazakhstan', 1218], ['Kenya', 291], ['Kuwait', 4], ['Kyrgyzstan', 23], ['Laos', 52], ['Lebanon', 35], ['Liberia', 324], ['Libya', 2007], ['Macedonia', 239], ['Madagascar', 3705], ['Malawi', 41], ['Malaysia', 1237], ['Malta', 5], ['Martinique', 1], ['Mauritania', 6], ['Mauritius', 39], ['Mayotte', 10], ['Mexico', 4588], ['Mexico, Costa Rica, Colombia, Ecuador', 1], ['Mexico, Guatemala', 2], ['Moldova', 3], ['Mongolia', 490], ['Morocco', 769], ['Morocco, Spain', 3], ['Mozambique', 1186], ['Myanmar', 32], ['Myanmar, China', 1], ['Namibia', 167], ['Nepal', 46], ['Netherlands', 17], ['New Caledonia', 240], ['New Zealand', 662], ['Nicaragua', 9], ['Niger', 5], ['Nigeria', 9], ['North Korea', 1], ['Oman', 10], ['Pakistan', 603], ['Palau', 7], ['Palestine', 12], ['Panama', 35], ['Papua New Guinea', 861], ['Paraguay', 24], ['Peru', 969], ['Philippines', 2114], ['Poland', 10], ['Portugal', 32], ['Puerto Rico', 5], ['Republic of the Congo', 344], ['Romania', 99], ['Russia', 1702], ['Rwanda', 39], ['RĂ©union', 25], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Lucia', 4], ['Saint Vincent and the Grenadines', 6], ['Samoa', 4], ['Sao Tome and Principe', 16], ['Saudi Arabia', 4], ['Senegal', 26], ['Serbia', 58], ['Seychelles', 64], ['Sierra Leone', 55], ['Singapore', 448], ['Sint Martin', 1], ['Slovakia', 5], ['Slovenia', 51], ['Solomon Islands', 35], ['Somalia', 3], ['South Africa', 3125], ['South Georgia and the South Sandwich Islands', 0], ['South Korea', 22], ['Spain', 94], ['Sri Lanka', 60], ['Sudan', 5], ['Suriname', 9], ['Swaziland', 1], ['Sweden', 3], ['Switzerland', 207], ['Syria', 78], ['Taiwan', 139], ['Tajikistan', 9], ['Tanzania', 843], ['Thailand', 226], ['Timor-Leste', 1], ['Togo', 121], ['Tonga', 1], ['Trinidad and Tobago', 0], ['Tunisia', 189], ['Turkey', 9389], ['Turkmenistan', 95], ['Turks and Caicos Islands', 1], ['Uganda', 23], ['Ukraine', 230], ['United Kingdom', 4], ['United States of America', 2372], ['Uruguay', 585], ['Uzbekistan', 10], ['Vanuatu', 527], ['Venezuela', 19], ['Venezuela, Colombia', 1], ['Vietnam', 507], ['Virgin Islands', 1], ['Western Sahara', 1], ['Yemen', 1], ['Zambia', 334], ['Zimbabwe', 28], ['afrique', 1], ['america', 0], ['check republic', 641], ['domingo', 0], ['ile maurice', 21], ['peninsular malaysia', 20] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=135018', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 198, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);