function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2572255], ['Afghanistan', 57158], ['Algeria', 3], ['American Samoa', 1], ['Angola', 1], ['Antarctica', 2], ['Antigua and Barbuda', 3], ['Argentina', 920], ['Australia', 297], ['Austria', 14], ['Bahamas', 9], ['Bahrain', 1], ['Bangladesh', 1], ['Belarus', 1], ['Belgium', 4], ['Belize', 28], ['Benin', 81], ['Bermuda', 1], ['Bolivia', 73295], ['Brazil', 1297], ['British Virgin Islands', 1], ['Brunei', 5], ['Bulgaria', 130], ['Burundi', 16], ['Cameroon', 626], ['Cameroon, Equatorial Guinea', 800], ['Canada', 115], ['Cape Verde', 2], ['Central African Republic', 47], ['Chad', 3], ['Chile', 269], ['China', 8243343], ['Colombia', 971], ['Costa Rica', 1152], ['Croatia', 6], ['Cuba', 25], ['Czech Republic', 20], ['Democratic Republic of the Congo', 622], ['Denmark', 1632], ['Dominica', 15], ['Dominican Republic', 24], ['Ecuador', 361], ['Egypt', 2], ['El Salvador', 51], ['Equatorial Guinea', 9], ['Eritrea', 1], ['Estonia', 1], ['Ethiopia', 5], ['Fiji', 7], ['Finland', 30], ['France', 93], ['French Guiana', 220], ['Gabon', 617], ['Georgia', 2], ['Germany', 41], ['Ghana', 14], ['Greece', 4], ['Greenland', 1], ['Grenada', 1], ['Guadeloupe', 3], ['Guatemala', 10], ['Guinea-Bissau', 1807], ['Guyana', 28], ['Haiti', 103], ['Honduras', 17], ['Hong Kong', 3], ['Hungary', 20], ['Iceland', 5], ['India', 265], ['Indonesia', 510], ['Iran', 29], ['Ireland', 1], ['Israel', 8], ['Italy', 54], ['Ivory Coast', 961], ['Jamaica', 23], ['Japan', 47], ['Kazakhstan', 2], ['Kenya', 11], ['Kosovo', 1], ['Kyrgyzstan', 9], ['Laos', 9], ['Lebanon', 2], ['Lesotho', 5], ['Liberia', 30], ['Macedonia', 1], ['Madagascar', 941], ['Malawi', 1], ['Malaysia', 14], ['Malta', 2], ['Martinique', 1], ['Mexico', 355], ['Micronesia', 1], ['Mongolia', 10], ['Morocco', 3], ['Myanmar', 33], ['Namibia', 78], ['Nepal', 1], ['Netherlands', 8], ['New Caledonia', 6], ['New Zealand', 62], ['Nicaragua', 13], ['Nigeria', 2257], ['Norway', 341], ['Oman', 7], ['Pakistan', 1916], ['Panama', 102], ['Papua New Guinea', 25], ['Paraguay', 15], ['Peru', 40], ['Philippines', 164], ['Poland', 2330185], ['Portugal', 15], ['Puerto Rico', 57311], ['Romania', 1], ['Russia', 866], ['Rwanda', 1], ['RĂ©union', 11], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 4], ['Samoa', 17], ['Sao Tome and Principe', 5], ['Senegal', 1], ['Serbia', 2], ['Seychelles', 50], ['Sierra Leone', 3], ['Singapore', 6], ['Slovakia', 31], ['South Africa', 18], ['South Korea', 96], ['Spain', 106], ['Sri Lanka', 469], ['Suriname', 7], ['Sweden', 26], ['Switzerland', 1679], ['Taiwan', 33], ['Tajikistan', 15], ['Tanzania', 6], ['Thailand', 4121], ['Togo', 1], ['Tonga', 2], ['Trinidad and Tobago', 23], ['Turkey', 40], ['Turkmenistan', 2], ['Turks and Caicos Islands', 3], ['Uganda', 933], ['Ukraine', 16], ['United Arab Emirates', 1], ['United Kingdom', 112], ['United States Pacific Island Wildlife Refuges', 4], ['United States Virgin Islands', 4], ['United States of America', 2724719], ['United States of America, Canada', 1], ['Uruguay', 1], ['Uzbekistan', 6], ['Venezuela', 491], ['Vietnam', 493], ['Virgin Islands', 4], ['Yemen', 2], ['Zambia', 3], ['Zimbabwe', 1], ['congo belge et ruanda-urundi', 14], ['island of st. helena.', 1], ['palau island', 1], ['poloniae', 1], ['reunion island', 1], ['u.s.a. georgia.', 2], ['uk england', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=16088986', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 169, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);