google_visualr 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/lib/google_visualr.rb +1 -0
- data/lib/google_visualr/interactive/geo_map.rb +11 -0
- data/lib/google_visualr/version.rb +1 -1
- metadata +3 -2
data/Gemfile.lock
CHANGED
data/lib/google_visualr.rb
CHANGED
@@ -21,6 +21,7 @@ require "#{lib_path}/google_visualr/interactive/column_chart"
|
|
21
21
|
require "#{lib_path}/google_visualr/interactive/combo_chart"
|
22
22
|
require "#{lib_path}/google_visualr/interactive/gauge"
|
23
23
|
require "#{lib_path}/google_visualr/interactive/geo_chart"
|
24
|
+
require "#{lib_path}/google_visualr/interactive/geo_map"
|
24
25
|
require "#{lib_path}/google_visualr/interactive/line_chart"
|
25
26
|
require "#{lib_path}/google_visualr/interactive/pie_chart"
|
26
27
|
require "#{lib_path}/google_visualr/interactive/scatter_chart"
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module GoogleVisualr
|
2
|
+
module Interactive
|
3
|
+
|
4
|
+
# http://code.google.com/apis/chart/interactive/docs/gallery/geomap.html
|
5
|
+
class GeoMap < BaseChart
|
6
|
+
# For Configuration Options, please refer to:
|
7
|
+
# http://code.google.com/apis/chart/interactive/docs/gallery/geomap.html#Configuration_Options
|
8
|
+
end
|
9
|
+
|
10
|
+
end
|
11
|
+
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: google_visualr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.0.
|
5
|
+
version: 2.0.3
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Winston Teo
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-07-
|
13
|
+
date: 2011-07-04 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- lib/google_visualr/interactive/combo_chart.rb
|
68
68
|
- lib/google_visualr/interactive/gauge.rb
|
69
69
|
- lib/google_visualr/interactive/geo_chart.rb
|
70
|
+
- lib/google_visualr/interactive/geo_map.rb
|
70
71
|
- lib/google_visualr/interactive/intensity_map.rb
|
71
72
|
- lib/google_visualr/interactive/line_chart.rb
|
72
73
|
- lib/google_visualr/interactive/map.rb
|