I can't for the life of me explain why I can't generate a visual for Kenya using this. It works for every other country except Kenya!!?????
<html> <head> <script type='text/javascript' src='https://www.google.com/jsapi'></script> <script type='text/javascript'> google.load('visualization', '1', {'packages': ['geomap']}); google.setOnLoadCallback(drawMap); function drawMap() { var data = google.visualization.arrayToDataTable([ ['County', 'claims'], ['Nairobi', 200], ['Nakuru', 300], ['Mombasa', 400], ['Kericho', 500], ['Bungoma', 600], ['Kakamega', 700] ]); var options = {}; options['dataMode'] = 'regions'; options['region'] = 'KE'; var container = document.getElementById('map_canvas'); var geomap = new google.visualization.GeoMap(container); geomap.draw(data, options); }; </script> </head> <body> <div id='map_canvas'></div> </body> </html> -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/groups/opt_out.
