function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2552422], ['Afghanistan', 57150], ['Algeria', 2], ['American Samoa', 1], ['Angola', 1], ['Antarctica', 2], ['Antigua and Barbuda', 3], ['Argentina', 897], ['Australia', 305], ['Austria', 9], ['Bahamas', 9], ['Belgium', 4], ['Belize', 26], ['Benin', 32], ['Bermuda', 1], ['Bolivia', 73285], ['Brazil', 556], ['British Virgin Islands', 1], ['Brunei', 5], ['Bulgaria', 130], ['Burundi', 16], ['Cameroon', 625], ['Cameroon, Equatorial Guinea', 800], ['Canada', 18], ['Chile', 269], ['China', 5917735], ['Colombia', 873], ['Costa Rica', 214], ['Croatia', 1], ['Cuba', 18], ['Czech Republic', 10], ['Democratic Republic of the Congo', 619], ['Denmark', 1601], ['Dominica', 15], ['Dominican Republic', 4], ['Ecuador', 344], ['Egypt', 2], ['Equatorial Guinea', 9], ['Eritrea', 1], ['Ethiopia', 4], ['Fiji', 7], ['Finland', 14], ['France', 55], ['French Guiana', 6], ['Gabon', 616], ['Georgia', 2], ['Germany', 29], ['Ghana', 11], ['Greenland', 1], ['Grenada', 1], ['Guadeloupe', 3], ['Guatemala', 4], ['Guinea-Bissau', 306], ['Guyana', 28], ['Haiti', 3], ['Honduras', 4], ['Hong Kong', 3], ['Hungary', 1], ['Iceland', 3], ['India', 101], ['Indonesia', 109], ['Iran', 28], ['Ireland', 1], ['Israel', 5], ['Italy', 25], ['Ivory Coast', 2], ['Jamaica', 11], ['Japan', 35], ['Kenya', 151], ['Kosovo', 1], ['Laos', 7], ['Lesotho', 5], ['Liberia', 28], ['Macedonia', 1], ['Madagascar', 939], ['Malawi', 110], ['Malaysia', 10], ['Malta', 2], ['Martinique', 1], ['Mexico', 75], ['Micronesia', 1], ['Mongolia', 7], ['Morocco', 3], ['Myanmar', 33], ['Namibia', 78], ['Nepal', 1], ['Netherlands', 7], ['New Caledonia', 6], ['New Zealand', 36], ['Nicaragua', 12], ['Nigeria', 2254], ['Norway', 340], ['Oman', 2], ['Pakistan', 21], ['Panama', 36], ['Papua New Guinea', 19], ['Paraguay', 10], ['Peru', 32], ['Philippines', 163], ['Poland', 2330183], ['Portugal', 8], ['Puerto Rico', 57257], ['Russia', 305], ['Rwanda', 35], ['RĂ©union', 4], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 2], ['Samoa', 4], ['Senegal', 1], ['Serbia', 2], ['Seychelles', 50], ['Sierra Leone', 3], ['Singapore', 4], ['Slovakia', 1], ['Solomon Islands', 0], ['South Africa', 16], ['South Korea', 53], ['Spain', 73], ['Sri Lanka', 11], ['Suriname', 6], ['Sweden', 5], ['Switzerland', 1675], ['Taiwan', 41], ['Tajikistan', 1], ['Tanzania', 14], ['Thailand', 314], ['Tonga', 2], ['Trinidad and Tobago', 21], ['Turkey', 12], ['Turks and Caicos Islands', 3], ['Uganda', 931], ['United Arab Emirates', 1], ['United Kingdom', 109], ['United States Pacific Island Wildlife Refuges', 4], ['United States of America', 2710988], ['Uruguay', 1], ['Uzbekistan', 4], ['Venezuela', 473], ['Vietnam', 19], ['Virgin Islands', 1], ['Yemen', 1], ['Zimbabwe', 1], ['congo belge et ruanda-urundi', 14], ['island of st. helena.', 1], ['poloniae', 1], ['u.s.a. georgia.', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=13716482', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 146, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);