function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 21504], ['Afghanistan', 15], ['Aland Islands', 1], ['Algeria', 8], ['American Samoa', 1], ['Angola', 173], ['Anguilla', 14], ['Argentina', 323], ['Armenia', 152], ['Australia', 64], ['Austria', 1], ['Azerbaijan', 6], ['Bangladesh', 63], ['Barbados', 7], ['Benin', 1], ['Bhutan', 1], ['Bolivia', 77], ['Botswana', 10], ['Brazil', 709], ['British Virgin Islands', 23], ['Bulgaria', 1], ['Burkina Faso', 2], ['Burundi', 1], ['Cambodia', 60], ['Cameroon', 25], ['Canada', 11], ['Cape Verde', 263], ['Chad', 1], ['Chile', 40], ['Chile, Bolivia', 1], ['China', 1379], ['China, Myanmar, Thailand', 1], ['Colombia', 991], ['Costa Rica', 8], ['Cuba', 1], ['Cyprus', 1], ['Democratic Republic of the Congo', 53], ['Djibouti', 2], ['Dominica', 1], ['Dominican Republic', 15], ['Ecuador', 511], ['Egypt', 14], ['El Salvador', 1], ['Equatorial Guinea', 480], ['Eritrea', 7], ['Ethiopia', 32], ['France', 2], ['French Guiana', 17], ['French Polynesia', 2], ['Gabon', 7], ['Georgia', 13], ['Germany', 8], ['Ghana', 17], ['Greece', 4], ['Grenada', 3], ['Guadeloupe', 17], ['Guam', 7], ['Guatemala', 3], ['Guinea-Bissau', 14], ['Guyana', 41], ['Haiti', 9], ['Heard Island and McDonald Islands', 4], ['Honduras', 23], ['Hong Kong', 10], ['Iceland', 55], ['Iceland, Fiji', 1], ['Iceland, Papua New Guinea', 2], ['India', 5031], ['Indonesia', 329], ['Iran', 362], ['Iraq', 8], ['Ireland', 32], ['Israel', 3], ['Italy', 2], ['Ivory Coast', 28], ['Jamaica', 23], ['Japan', 43], ['Kazakhstan', 43], ['Kenya', 124], ['Kyrgyzstan', 7], ['Laos', 97], ['Lesotho', 2], ['Liberia', 11], ['Libya', 5], ['Madagascar', 1108], ['Malawi', 1], ['Malaysia', 341], ['Marshall Islands', 2], ['Martinique', 9], ['Mauritania', 4], ['Mexico', 287], ['Micronesia', 1], ['Mongolia', 54], ['Montserrat', 3], ['Morocco', 36], ['Mozambique', 71], ['Myanmar', 344], ['Namibia', 109], ['Nepal', 6], ['Netherlands', 64], ['New Caledonia', 13], ['New Zealand', 34], ['Nicaragua', 1], ['Nigeria', 8], ['Northern Mariana Islands', 3], ['Oman', 33], ['Pakistan', 31], ['Palau', 3], ['Palestine', 1], ['Panama', 159], ['Papua New Guinea', 990], ['Paraguay', 27], ['Peru', 949], ['Philippines', 57], ['Portugal', 4], ['Puerto Rico', 59], ['Puerto Rico, United States of America', 1], ['Republic of the Congo', 37], ['Russia', 13], ['Rwanda', 5], ['Saint Helena, Ascension and Tristan da Cunha', 83], ['Saint Lucia', 5], ['Saint Pierre and Miquelon', 19], ['Saint Pierre and Miquelon, Equatorial Guinea', 1], ['Saint Vincent and the Grenadines', 12], ['Sao Tome and Principe', 9], ['Saudi Arabia', 7], ['Senegal', 4], ['Serbia', 1], ['Seychelles', 7], ['Sierra Leone', 1], ['Singapore', 1235], ['Sint Martin', 3], ['Solomon Islands', 8], ['Somalia', 43], ['South Africa', 188], ['Spain', 35], ['Sri Lanka', 230], ['Sudan', 25], ['Suriname', 46], ['Swaziland', 3], ['Sweden', 8], ['Switzerland', 1], ['Syria', 7], ['Taiwan', 14], ['Tajikistan', 2], ['Tanzania', 122], ['Thailand', 299], ['Timor-Leste', 2], ['Togo', 866], ['Trinidad and Tobago', 32], ['Tunisia', 4], ['Turkey', 215], ['Turkmenistan', 19], ['Turks and Caicos Islands', 14], ['Uganda', 14], ['United Kingdom', 2], ['United States Virgin Islands', 17], ['United States of America', 37], ['Uruguay', 19], ['Uzbekistan', 5], ['Vanuatu', 19], ['Venezuela', 170], ['Vietnam', 2448], ['Vietnam, Cambodia', 1], ['Virgin Islands', 5], ['Yemen', 35], ['Zambia', 13], ['Zimbabwe', 86], ['annobon island', 1], ['flores island', 4], ['indonesian new guinea', 0], ['nagorno-karabakh', 10], ['saba island', 4], ['singapore island', 24], ['socotra island', 1], ['tobago island', 4], ['turk island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=44824', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 178, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);