Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. https://code.google.com/apis/ajax/playground/?type=visualization#geo_map
  2.  
  3. function drawVisualization() {
  4. var data = google.visualization.arrayToDataTable([['Country', 'Number'],
  5. ['Canada', 21],
  6. ['Brazil', 3],
  7. ['Italy', 3],
  8. ['Czech Republic', 1],
  9. ['unknown(Bree)', 1],
  10. ['France', 6],
  11. ['Slovakia', 1],
  12. ['Ireland', 1],
  13. ['Argentina', 3],
  14. ['Norway', 1],
  15. ['Israel', 1],
  16. ['Australia', 15],
  17. ['Indonesia', 1],
  18. ['Venezuela', 1],
  19. ['Zambia', 1],
  20. ['unknown(nowhere and everywhere)', 1],
  21. ['unknown(place)', 1],
  22. ['Slovenia', 1],
  23. ['Germany', 15],
  24. ['Belgium', 5],
  25. ['Poland', 8],
  26. ['Spain', 4],
  27. ['Ukraine', 1],
  28. ['Netherlands', 2],
  29. ['Denmark', 3],
  30. ['Philippines', 1],
  31. ['Finland', 10],
  32. ['United States', 122],
  33. ['Sweden', 9],
  34. ['Belarus', 1],
  35. ['Croatia', 1],
  36. ['Japan', 2],
  37. ['Switzerland', 1],
  38. ['New Zealand', 2],
  39. ['Russia', 7],
  40. ['Romania', 1],
  41. ['Honduras', 1],
  42. ['Portugal', 1],
  43. ['Estonia', 4],
  44. ['South Africa', 1],
  45. ['Equatorial Guinea', 1],
  46. ['India', 1],
  47. ['United Kingdom', 13],
  48. ['Austria', 1],
  49. ['Greece', 1],
  50. ['Hungary', 1],
  51. ['South Korea', 2],
  52. ['Cyprus', 1]]);
  53.  
  54. var options = {};
  55. options["height"] = '700px';
  56. options["width"] = '1500px';
  57. var geomap = new google.visualization.GeoMap(
  58. document.getElementById('visualization'));
  59. geomap.draw(data, options);
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement