gmap_markers 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/gmap_markers.gemspec +2 -2
- data/lib/gmap_markers.rb +0 -1
- metadata +2 -3
- data/lib/gmap_markers/version.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b8ff3473508782536459eed159cb5b07cfeaa62
|
|
4
|
+
data.tar.gz: 152f7da52d60e728c11ab496604e1551f841e84f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32e4383cd46f8d5bc2721f17cf3e2a2e82524ac9f8efc81dd78e69ceba9db824c835d1e14b946bd3b39bbffb3087b57ff2c276652bbe4aa4c3f5baaf682cf997
|
|
7
|
+
data.tar.gz: 56b0825c1449ee94144d6499188072460e3abc7591db3f4305a967c330fcb12f410a4f75ea22a7fb9f29ae8b0ce37b5e8f795a29045aafbceeeb6e95f1ec4336
|
data/README.md
CHANGED
|
@@ -22,7 +22,12 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
using: render_map_with_markers(markers , center_lat, center_lng, zoom) for show a map have much markers
|
|
26
|
+
example:
|
|
27
|
+
render_map_with_markers([{lat: 1.307532, lng: 103.881287, description: 'Test'}], 1.307532, 103.881287, 17)
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
views app must slim
|
|
26
31
|
|
|
27
32
|
## Development
|
|
28
33
|
|
data/gmap_markers.gemspec
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "gmap_markers"
|
|
5
|
-
spec.version = '0.0.
|
|
5
|
+
spec.version = '0.0.2'
|
|
6
6
|
spec.platform = Gem::Platform::RUBY
|
|
7
7
|
spec.authors = ["Ami Nguyen"]
|
|
8
8
|
spec.email = ["ami@futureworkz.com"]
|
|
9
9
|
|
|
10
|
-
spec.homepage = "http://github.com/
|
|
10
|
+
spec.homepage = "http://github.com/hoangtung50"
|
|
11
11
|
spec.summary = "Add a map to view using the Google Maps API"
|
|
12
12
|
spec.description = "A map for Helpers that can be used to show muti markers"
|
|
13
13
|
spec.rubyforge_project = spec.name
|
data/lib/gmap_markers.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gmap_markers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ami Nguyen
|
|
@@ -59,8 +59,7 @@ files:
|
|
|
59
59
|
- lib/gmap_markers.rb
|
|
60
60
|
- lib/gmap_markers/gmaps_helper.rb
|
|
61
61
|
- lib/gmap_markers/test.rb
|
|
62
|
-
|
|
63
|
-
homepage: http://github.com/tungnh90/
|
|
62
|
+
homepage: http://github.com/hoangtung50
|
|
64
63
|
licenses: []
|
|
65
64
|
metadata: {}
|
|
66
65
|
post_install_message:
|
data/lib/gmap_markers/version.rb
DELETED