function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5312], ['Albania', 66], ['American Samoa', 7], ['Angola', 80], ['Argentina', 98], ['Ashmore and Cartier Islands', 12], ['Australia', 313], ['Austria', 5], ['Belgium', 1], ['Belize', 43], ['Bhutan', 5], ['Bolivia', 88], ['Brazil', 12310], ['Brunei', 33], ['Cambodia', 56], ['Cameroon', 37], ['Canada', 23], ['China', 399], ['China, Taiwan, Laos, Vietnam', 1], ['Colombia', 1793], ['Costa Rica', 582], ['Cuba', 44], ['Czech Republic', 1], ['Democratic Republic of the Congo', 248], ['Denmark', 5], ['Dominica', 121], ['Dominican Republic', 260], ['Ecuador', 4537], ['Egypt', 2], ['El Salvador', 24], ['Fiji', 13], ['France', 8], ['French Guiana', 21], ['Gabon', 412], ['Georgia', 1], ['Germany', 12], ['Ghana', 20], ['Guadeloupe', 18], ['Guam', 15], ['Guatemala', 623], ['Guinea-Bissau', 55], ['Guyana', 43], ['Haiti', 5], ['Honduras', 200], ['Hong Kong', 577], ['Iceland', 27], ['India', 518], ['Indonesia', 990], ['Iran', 2], ['Israel', 50], ['Italy', 1], ['Jamaica', 3], ['Japan', 11], ['Jordan', 16], ['Kazakhstan', 1], ['Laos', 26], ['Lebanon', 8], ['Liberia', 57], ['Luxembourg', 1], ['Madagascar', 9], ['Malawi', 5], ['Malaysia', 716], ['Martinique', 17], ['Mauritius', 42], ['Mexico', 4481], ['Mongolia', 1], ['Morocco', 3], ['Mozambique', 1], ['Myanmar', 3], ['Nepal', 3], ['Netherlands', 15], ['Netherlands, Saint Pierre and Miquelon', 40], ['New Caledonia', 89], ['Nicaragua', 42], ['Nigeria', 5], ['Oman', 1], ['Palestine', 10], ['Panama', 571], ['Papua New Guinea', 372], ['Paraguay', 18], ['Peru', 1708], ['Philippines', 12], ['Puerto Rico', 13], ['Republic of the Congo', 11], ['Russia', 17], ['Saint Helena, Ascension and Tristan da Cunha', 146], ['Saint Kitts and Nevis', 177], ['Saint Lucia', 13], ['Saint Pierre and Miquelon', 85], ['Samoa', 1], ['Senegal', 500], ['Seychelles', 2], ['Sierra Leone', 33], ['Singapore', 6], ['Solomon Islands', 41], ['South Africa', 17], ['South Korea', 56], ['Sri Lanka', 14], ['Suriname', 369], ['Switzerland', 108], ['Syria', 6], ['Taiwan', 4], ['Tanzania', 25], ['Thailand', 194], ['Timor-Leste', 2], ['Tonga', 3], ['Trinidad and Tobago', 47], ['Turkey', 4], ['Uganda', 10], ['Ukraine', 1], ['United Kingdom', 3], ['United States of America', 147], ['Vanuatu', 72], ['Venezuela', 806], ['Vietnam', 916], ['Virgin Islands', 10], ['Yemen', 2], ['Zambia', 94], ['Zimbabwe', 9], ['europe', 1], ['malaysia sarawak', 9], ['new georgia', 1], ['new guinea', 48] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=42427', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 123, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);