mapbox-rails 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of mapbox-rails might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.md +50 -0
- data/README.md +56 -0
- data/Rakefile +13 -0
- data/lib/mapbox-rails.rb +11 -0
- data/lib/mapbox-rails/engine.rb +6 -0
- data/lib/mapbox-rails/railtie.rb +6 -0
- data/lib/mapbox-rails/remote_resource_loader.rb +39 -0
- data/lib/mapbox-rails/version.rb +6 -0
- data/mapbox-rails.gemspec +23 -0
- data/vendor/assets/images/layers.png +0 -0
- data/vendor/assets/images/marker-icon.png +0 -0
- data/vendor/assets/images/marker-icon@2x.png +0 -0
- data/vendor/assets/images/marker-shadow.png +0 -0
- data/vendor/assets/javascripts/mapbox.js +13790 -0
- data/vendor/assets/stylesheets/mapbox.css.sass +588 -0
- data/vendor/assets/stylesheets/mapbox.ie.css +51 -0
- metadata +92 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
.leaflet-vml-shape {
|
2
|
+
width: 1px;
|
3
|
+
height: 1px;
|
4
|
+
}
|
5
|
+
.lvml {
|
6
|
+
behavior: url(#default#VML);
|
7
|
+
display: inline-block;
|
8
|
+
position: absolute;
|
9
|
+
}
|
10
|
+
|
11
|
+
.leaflet-control {
|
12
|
+
display: inline;
|
13
|
+
}
|
14
|
+
|
15
|
+
.leaflet-popup-tip {
|
16
|
+
width: 21px;
|
17
|
+
_width: 27px;
|
18
|
+
margin: 0 auto;
|
19
|
+
_margin-top: -3px;
|
20
|
+
|
21
|
+
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
22
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
23
|
+
}
|
24
|
+
.leaflet-popup-tip-container {
|
25
|
+
margin-top: -1px;
|
26
|
+
}
|
27
|
+
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
|
28
|
+
border: 1px solid #999;
|
29
|
+
}
|
30
|
+
.leaflet-popup-content-wrapper {
|
31
|
+
zoom: 1;
|
32
|
+
}
|
33
|
+
|
34
|
+
.leaflet-control-zoom,
|
35
|
+
.leaflet-control-layers {
|
36
|
+
border: 3px solid #999;
|
37
|
+
}
|
38
|
+
.leaflet-control-layers-toggle {
|
39
|
+
}
|
40
|
+
.leaflet-control-attribution,
|
41
|
+
.leaflet-control-layers,
|
42
|
+
.leaflet-control-scale-line {
|
43
|
+
background: white;
|
44
|
+
}
|
45
|
+
.leaflet-zoom-box {
|
46
|
+
filter: alpha(opacity=50);
|
47
|
+
}
|
48
|
+
.leaflet-control-attribution {
|
49
|
+
border-top: 1px solid #bbb;
|
50
|
+
border-left: 1px solid #bbb;
|
51
|
+
}
|
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mapbox-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mark Madsen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-04-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Integrate MapBox.js with the Rails asset pipeline
|
42
|
+
email:
|
43
|
+
- growl@agileanimal.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.md
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/mapbox-rails.rb
|
54
|
+
- lib/mapbox-rails/engine.rb
|
55
|
+
- lib/mapbox-rails/railtie.rb
|
56
|
+
- lib/mapbox-rails/remote_resource_loader.rb
|
57
|
+
- lib/mapbox-rails/version.rb
|
58
|
+
- mapbox-rails.gemspec
|
59
|
+
- vendor/assets/images/layers.png
|
60
|
+
- vendor/assets/images/marker-icon.png
|
61
|
+
- vendor/assets/images/marker-icon@2x.png
|
62
|
+
- vendor/assets/images/marker-shadow.png
|
63
|
+
- vendor/assets/javascripts/mapbox.js
|
64
|
+
- vendor/assets/stylesheets/mapbox.css.sass
|
65
|
+
- vendor/assets/stylesheets/mapbox.ie.css
|
66
|
+
homepage: https://github.com/aai/mapbox-rails
|
67
|
+
licenses:
|
68
|
+
- BSD and MIT
|
69
|
+
metadata: {}
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options: []
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
- vendor
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
requirements: []
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 2.0.3
|
88
|
+
signing_key:
|
89
|
+
specification_version: 4
|
90
|
+
summary: Integrate MapBox.js with the Rails asset pipeline
|
91
|
+
test_files: []
|
92
|
+
has_rdoc:
|