function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2718], ['Andorra', 3], ['Angola', 250], ['Argentina', 17], ['Armenia', 11], ['Australia', 27], ['Austria', 6], ['Azerbaijan', 2], ['Bangladesh', 1], ['Belgium', 3], ['Bhutan', 11], ['Bolivia', 7], ['Brazil', 98], ['Brunei', 3], ['Burundi', 0], ['Cambodia', 322], ['Cameroon', 521], ['China', 11104], ['Colombia', 11], ['Costa Rica', 12], ['Cuba', 4], ['Cyprus', 6], ['Democratic Republic of the Congo', 71], ['Denmark', 1], ['Dominica', 3], ['Ecuador', 8], ['Equatorial Guinea', 1], ['Estonia', 2], ['Ethiopia', 10], ['Finland', 2], ['France', 92], ['French Guiana', 2], ['Gabon', 101], ['Gambia', 0], ['Ghana', 94], ['Greece', 2], ['Grenada', 10], ['Guatemala', 6], ['Guinea-Bissau', 44], ['Haiti', 1], ['Honduras', 6], ['Hong Kong', 0], ['Iceland', 5], ['India', 5058], ['India, Nepal', 51], ['Indonesia', 581], ['Iran', 2], ['Israel', 7], ['Italy', 42], ['Ivory Coast', 70], ['Jamaica', 1], ['Japan', 69], ['Kazakhstan', 351], ['Kenya', 65], ['Kyrgyzstan', 8], ['Laos', 361], ['Liberia', 40], ['Madagascar', 410], ['Malawi', 18], ['Malaysia', 335], ['Mexico', 10], ['Mongolia', 13], ['Morocco', 36], ['Mozambique', 251], ['Myanmar', 640], ['Nepal', 2319], ['Nepal, India', 1], ['Netherlands', 4], ['Nicaragua', 7], ['Nigeria', 38], ['North Korea', 23], ['Pakistan', 785], ['Panama', 2], ['Papua New Guinea', 6], ['Paraguay', 7], ['Peru', 327], ['Philippines', 519], ['Philippines, Iceland', 1], ['Republic of the Congo', 5], ['Romania', 5], ['Russia', 668], ['Rwanda', 37], ['Saint Pierre and Miquelon', 2], ['Sao Tome and Principe', 132], ['Senegal', 1], ['Serbia', 0], ['Sierra Leone', 21], ['Slovenia', 6], ['Solomon Islands', 2], ['South Africa', 202], ['South Korea', 2], ['Spain', 1033], ['Sri Lanka', 55], ['Sweden', 3], ['Taiwan', 2648], ['Tajikistan', 21], ['Tanzania', 114], ['Thailand', 3295], ['Timor-Leste', 1], ['Togo', 11], ['Trinidad and Tobago', 82], ['Turkey', 9], ['Turkmenistan', 182], ['Uganda', 31], ['United Kingdom', 5], ['United States of America', 5], ['Uzbekistan', 19], ['Venezuela', 23], ['Vietnam', 2753], ['Zambia', 1407], ['Zimbabwe', 286], ['flores island', 25] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=41147', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 112, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);