function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 6894], ['" sabah', 6], ['Afghanistan', 1], ['Algeria', 3], ['Angola', 1], ['Argentina', 69], ['Australia', 2], ['Bahamas', 2], ['Bangladesh', 1], ['Belize', 2], ['Bolivia', 12], ['Brazil', 5996], ['Brunei', 1], ['Cambodia', 21], ['Cameroon', 3], ['Canada', 128], ['China', 6036], ['Colombia', 55], ['Cook Islands', 1], ['Costa Rica', 211], ['Czech Republic', 1], ['Denmark', 5], ['Dominica', 1], ['Dominican Republic', 3], ['Ecuador', 1268], ['Egypt', 3], ['El Salvador', 2], ['France', 11], ['French Guiana', 9], ['Germany', 17], ['Ghana', 17], ['Greece', 6], ['Guadeloupe', 1], ['Guam', 6], ['Guatemala', 9], ['Guyana', 50], ['Honduras', 2], ['Hong Kong', 354], ['Iceland', 12], ['India', 412], ['Indonesia', 994], ['Iran', 41], ['Iraq', 1], ['Israel', 1], ['Italy', 3], ['Japan', 161], ['Japan, South Korea, Sri Lanka', 1], ['Kazakhstan', 18], ['Kenya', 1], ['Kyrgyzstan', 27], ['Laos', 100], ['Lebanon', 1], ['Macao', 73], ['Madagascar', 1], ['Malawi', 2], ['Malaysia', 25], ['Marshall Islands', 1], ['Mexico', 41], ['Mongolia', 91], ['Myanmar', 11], ['Nepal', 125], ['New Caledonia', 3], ['New Zealand', 214], ['Nicaragua', 7], ['Oman', 3], ['Pakistan', 2], ['Panama', 367], ['Paraguay', 4], ['Peru', 897], ['Philippines', 1], ['Poland', 1], ['Puerto Rico', 3], ['Republic of the Congo', 6], ['Russia', 347], ['Saint Kitts and Nevis', 1], ['Saudi Arabia', 5], ['Singapore', 13], ['South Africa', 35], ['Spain', 15], ['Sri Lanka', 15], ['Sudan', 1], ['Suriname', 307], ['Sweden', 9], ['Switzerland', 25], ['Syria', 1], ['Taiwan', 392], ['Tajikistan', 24], ['Thailand', 56], ['Trinidad and Tobago', 37], ['Turkey', 104], ['Turkmenistan', 98], ['United Arab Emirates', 3], ['United Kingdom', 81], ['United States Pacific Island Wildlife Refuges', 9], ['United States of America', 148], ['Venezuela', 739], ['Vietnam', 38], ['Virgin Islands', 4], ['Yemen', 53], ['Zimbabwe', 0], ['sulawesi', 1], ['vietnam tonkin', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=27423', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 102, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);