function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 10111], ['Afghanistan', 21], ['Algeria', 37], ['American Samoa', 3], ['Angola', 43], ['Anguilla', 1], ['Antigua and Barbuda', 196], ['Argentina', 411], ['Armenia', 2], ['Aruba', 4], ['Australia', 689], ['Austria', 6], ['Azerbaijan', 2], ['Bahamas', 2], ['Belgium', 1], ['Belize', 3], ['Bolivia', 215], ['Bonaire, Sint Eustatius and Saba', 8], ['Bonaire, Sint Eustatius and Saba, Curaçao', 1], ['Botswana', 3], ['Brazil', 1366], ['Burundi', 9], ['Cambodia', 1], ['Cameroon', 33], ['Canada', 7], ['Cayman Islands', 1], ['Central African Republic', 1], ['Chile', 58], ['China', 202], ['Colombia', 618], ['Costa Rica', 63], ['Croatia', 19], ['Curaçao', 3], ['Cyprus', 1], ['Democratic Republic of the Congo', 40], ['Denmark', 6], ['Dominican Republic', 3], ['Ecuador', 579], ['Egypt', 10], ['Equatorial Guinea', 3], ['Eritrea', 4], ['Ethiopia', 36], ['Fiji', 47], ['France', 46], ['French Guiana', 2], ['Gabon', 9], ['Gambia', 2], ['Germany', 38], ['Ghana', 6], ['Greece', 7], ['Greenland', 3], ['Guatemala', 266], ['Guinea-Bissau', 633], ['Guyana', 4], ['Haiti', 9], ['Honduras', 4], ['Hungary', 2], ['Iceland', 63], ['Iceland, Indonesia', 4], ['Iceland, Solomon Islands', 1], ['India', 175], ['Indonesia', 2182], ['Iran', 8], ['Ireland', 1], ['Israel', 2], ['Italy', 11], ['Japan', 11], ['Jordan', 18], ['Kazakhstan', 19], ['Kenya', 79], ['Kyrgyzstan', 5], ['Lebanon', 2], ['Liberia', 3], ['Libya', 1], ['Madagascar', 4], ['Malawi', 1], ['Malaysia', 75], ['Mauritius', 4], ['Mexico', 102], ['Micronesia', 3], ['Morocco', 26], ['Mozambique', 4], ['Myanmar', 23], ['Namibia', 9], ['Nepal', 6], ['Netherlands', 48], ['New Caledonia', 1], ['New Zealand', 20], ['Nicaragua', 18], ['Niger', 12], ['Nigeria', 19], ['Norfolk Island', 1], ['Northern Mariana Islands', 1], ['Norway', 1], ['Pakistan', 3], ['Palestine', 2], ['Panama', 121], ['Papua New Guinea', 167], ['Paraguay', 11], ['Peru', 806], ['Philippines', 85], ['Poland', 56], ['Portugal', 2], ['Puerto Rico', 1], ['Romania', 3], ['Russia', 17], ['Rwanda', 3], ['Saint Helena, Ascension and Tristan da Cunha', 31], ['Saint Kitts and Nevis', 2], ['Saint Pierre and Miquelon', 18], ['Samoa', 1], ['Sao Tome and Principe', 0], ['Saudi Arabia', 8], ['Senegal', 16], ['Sierra Leone', 3], ['Singapore', 2], ['Slovakia', 38], ['Solomon Islands', 44], ['South Africa', 12], ['South Korea', 82], ['Spain', 9], ['Sri Lanka', 11], ['Sudan', 12], ['Suriname', 5], ['Sweden', 3], ['Switzerland', 12], ['Syria', 5], ['Taiwan', 37], ['Tanzania', 72], ['Thailand', 10], ['Tonga', 13], ['Trinidad and Tobago', 36], ['Tunisia', 2], ['Turkey', 11], ['Turkmenistan', 1], ['Uganda', 56], ['Ukraine', 5], ['United Kingdom', 11], ['United States of America', 10], ['Uruguay', 3], ['Vanuatu', 163], ['Venezuela', 119], ['Vietnam', 35], ['Western Sahara', 1], ['Yemen', 6], ['Zambia', 4], ['aruba island', 1], ['bonaire island', 1], ['flores island', 9], ['malta island', 1], ['mombasa island', 2], ['saba saba', 5], ['sao tome island', 2], ['socotra island', 1], ['taiwan island', 16], ['ternate island', 1], ['trinidad island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=21089', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 157, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);