rails-google-maps 0.0.12 → 0.0.13
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.
data/README.md
CHANGED
@@ -28,7 +28,7 @@ Haml example:
|
|
28
28
|
|
29
29
|
And include it in your ```application.js``` file after jquery:
|
30
30
|
```
|
31
|
-
//= require
|
31
|
+
//= require rails-google-maps/google_maps
|
32
32
|
```
|
33
33
|
|
34
34
|
|
@@ -63,6 +63,11 @@ new GoogleMap({immutable: true})
|
|
63
63
|
```
|
64
64
|
|
65
65
|
5) Integrate map with jquery-autocomplete:
|
66
|
+
in 'application.js':
|
67
|
+
```
|
68
|
+
//= require rails-google-maps/autocomplete
|
69
|
+
```
|
70
|
+
in client code:
|
66
71
|
```js
|
67
72
|
gmap = new GoogleMap()
|
68
73
|
autoComplete = new GmapAutocomplete('#gmaps-input-address', gmap)
|
data/vendor/assets/javascripts/{autocomplete.js.coffee → rails-google-maps/autocomplete.js.coffee}
RENAMED
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-google-maps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -59,8 +59,8 @@ files:
|
|
59
59
|
- lib/rails-google-maps/rails.rb
|
60
60
|
- lib/rails-google-maps/version.rb
|
61
61
|
- rails-google-maps.gemspec
|
62
|
-
- vendor/assets/javascripts/autocomplete.js.coffee
|
63
|
-
- vendor/assets/javascripts/
|
62
|
+
- vendor/assets/javascripts/rails-google-maps/autocomplete.js.coffee
|
63
|
+
- vendor/assets/javascripts/rails-google-maps/google_maps.js.coffee
|
64
64
|
homepage: http://github.com/yratanov/rails_google_maps
|
65
65
|
licenses: []
|
66
66
|
post_install_message:
|