web-mapping 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e1f01f38e0fb183f8c4c67b2d2de5ef83fdcbd23859590e1b13fe0ff387cbc36
4
- data.tar.gz: 77f08d9c76444ba3769ce0580b9f45ed39de43643afafd9b8e1d20a507d70a32
3
+ metadata.gz: 668a5ac11e703ab9b5c20a6ab6489225a542f0602c9e2b5be41f33486ca80612
4
+ data.tar.gz: 243de036715e5537d992063aa728634a0008e432293bdc1e4ba6513320a14212
5
5
  SHA512:
6
- metadata.gz: 175a5eba8ebcc8e95b1844e4c4c72fa2ee019a6efec7843e36af4ecd0d86e174da62131a01b2e9aca5e4ddc9a6528a7d9dc5c2b5c9c2d79dd8cc4feff1b004b2
7
- data.tar.gz: 340da39111559901e33c4491db9dd67d7981244e078246b1c0cf92abdb1469c44f1eeff2e537c00cf5f8639b4864b822067031936055c2ca2b5378e080f99795
6
+ metadata.gz: 72199c588df96bc7e1e39dc58376b2cc9fa423a4f8afb9f8e02159649ff0d329987c8a20c21a360a78f52c0613e111986ced6cdba525bea4fb6df12fe1618391
7
+ data.tar.gz: afd58b3dde2e60cb226fb3503fe748666e5663408a68a6501f405fcd85add2061d3782b3f52ea81c5c9fe42f102ec56cc6e50a4b872862612dbcae916174bf7c
data/404.html ADDED
@@ -0,0 +1,24 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <style type="text/css" media="screen">
6
+ .container {
7
+ margin: 10px auto;
8
+ max-width: 600px;
9
+ text-align: center;
10
+ }
11
+ h1 {
12
+ margin: 30px 0;
13
+ font-size: 4em;
14
+ line-height: 1;
15
+ letter-spacing: -1px;
16
+ }
17
+ </style>
18
+
19
+ <div class="container">
20
+ <h1>404</h1>
21
+
22
+ <p><strong>Page not found :(</strong></p>
23
+ <p>The requested page could not be found.</p>
24
+ </div>
data/_layouts/page.html CHANGED
@@ -3,5 +3,5 @@ layout: default
3
3
  ---
4
4
 
5
5
  {% include navbar.html %}
6
- <!-- {{ content }} -->
6
+ {{ content }}
7
7
  {% include leafletmap.html %}
@@ -0,0 +1,204 @@
1
+ html {
2
+ height: 100%;
3
+ width: 100%;
4
+ overflow: hidden;
5
+ }
6
+ body {
7
+ height: 100%;
8
+ width: 100%;
9
+ overflow: hidden;
10
+ padding-top: 50px;
11
+ }
12
+ #container {
13
+ height: 100%;
14
+ width: 100%;
15
+ overflow: hidden;
16
+ }
17
+ input[type="radio"] {
18
+ margin: 0;
19
+ }
20
+ input[type="checkbox"] {
21
+ margin: 0;
22
+ margin: 2px;
23
+ }
24
+ #sidebar {
25
+ display: block;
26
+ width: 250px;
27
+ height: 100%;
28
+ max-width: 100%;
29
+ float: left;
30
+ }
31
+ #map {
32
+ width: auto;
33
+ height: 100%;
34
+ box-shadow: 0 0 10px rgba(0,0,0,0.5);
35
+ }
36
+ #loading {
37
+ position: absolute;
38
+ width: 220px;
39
+ height: 19px;
40
+ top: 50%;
41
+ left: 50%;
42
+ margin: -10px 0 0 -110px;
43
+ z-index: 20001;
44
+ }
45
+ #features {
46
+ margin: 0px;
47
+ border: none;
48
+ border-radius: 0px;
49
+ -webkit-box-shadow: none;
50
+ box-shadow: none;
51
+ }
52
+ #sidebar-hide-btn {
53
+ margin-top: -2px;
54
+ }
55
+ #aboutTabsContent {
56
+ padding-top: 10px;
57
+ }
58
+ .progress-bar-full {
59
+ width: 100%;
60
+ }
61
+ .white {
62
+ color: #FFFFFF;
63
+ }
64
+ .panel-heading {
65
+ width: 250px;
66
+ }
67
+ .panel-body {
68
+ width: 250px;
69
+ }
70
+ .feature-row {
71
+ cursor: pointer;
72
+ width: 250px;
73
+ }
74
+ .sidebar-wrapper {
75
+ width: 100%;
76
+ height: 100%;
77
+ position: relative;
78
+ }
79
+ .sidebar-table {
80
+ position: absolute;
81
+ width: 100%;
82
+ top: 103px;
83
+ bottom: 0px;
84
+ overflow: auto;
85
+ }
86
+ .leaflet-control-layers {
87
+ overflow: auto;
88
+ label {
89
+ font-weight: normal;
90
+ margin-bottom: 0px;
91
+ }
92
+ }
93
+ .leaflet-control-layers-list {
94
+ input[type="radio"] {
95
+ margin: 2px;
96
+ }
97
+ }
98
+ .table {
99
+ margin-bottom: 0px;
100
+ }
101
+ .navbar {
102
+ .navbar-brand {
103
+ font-weight: bold;
104
+ font-size: 25px;
105
+ color: #FFFFFF;
106
+ }
107
+ }
108
+ .navbar-collapse.in {
109
+ overflow-y: hidden;
110
+ }
111
+ .navbar-header {
112
+ .navbar-icon-container {
113
+ margin-right: 15px;
114
+ }
115
+ .navbar-icon {
116
+ line-height: 50px;
117
+ height: 50px;
118
+ }
119
+ a.navbar-icon {
120
+ margin-left: 25px;
121
+ }
122
+ }
123
+ .typeahead {
124
+ background-color: #FFFFFF;
125
+ }
126
+ .tt-dropdown-menu {
127
+ background-color: #FFFFFF;
128
+ border: 1px solid rgba(0, 0, 0, 0.2);
129
+ border-radius: 4px 4px 4px 4px;
130
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
131
+ margin-top: 4px;
132
+ padding: 4px 0;
133
+ width: 100%;
134
+ max-height: 300px;
135
+ overflow: auto;
136
+ }
137
+ .tt-suggestion {
138
+ font-size: 14px;
139
+ line-height: 20px;
140
+ padding: 3px 10px;
141
+ p {
142
+ margin: 0;
143
+ }
144
+ + {
145
+ .tt-suggestion {
146
+ border-top: 1px solid #ccc;
147
+ }
148
+ }
149
+ }
150
+ .tt-suggestion.tt-cursor {
151
+ background-color: #0097CF;
152
+ color: #FFFFFF;
153
+ cursor: pointer;
154
+ }
155
+ .typeahead-header {
156
+ margin: 0 5px 5px 5px;
157
+ padding: 3px 0;
158
+ border-bottom: 2px solid #333;
159
+ }
160
+ .has-feedback {
161
+ .form-control-feedback {
162
+ position: absolute;
163
+ top: 0;
164
+ right: 0;
165
+ display: block;
166
+ width: 34px;
167
+ height: 34px;
168
+ line-height: 34px;
169
+ text-align: center;
170
+ }
171
+ }
172
+ @media (max-width: 992px) {
173
+ .navbar {
174
+ .navbar-brand {
175
+ font-size: 18px;
176
+ }
177
+ }
178
+ }
179
+ @media (max-width: 767px) {
180
+ #sidebar {
181
+ display: none;
182
+ }
183
+ .url-break {
184
+ word-break: break-all;
185
+ word-break: break-word;
186
+ -webkit-hyphens: auto;
187
+ hyphens: auto;
188
+ }
189
+ .dropdown-menu {
190
+ a {
191
+ i {
192
+ color: #FFFFFF;
193
+ }
194
+ }
195
+ }
196
+ }
197
+ @media print {
198
+ .navbar {
199
+ display: none !important;
200
+ }
201
+ .leaflet-control-container {
202
+ display: none !important;
203
+ }
204
+ }
data/assets/css/main.scss CHANGED
@@ -1 +1 @@
1
- @import "web-mapping";
1
+ @import "web-mapping-theme";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web-mapping
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lerry William
@@ -59,9 +59,9 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - 404.html
62
63
  - LICENSE.txt
63
64
  - README.md
64
- - _config.yml
65
65
  - _includes/about.html
66
66
  - _includes/contact.html
67
67
  - _includes/google-analytics.html
@@ -71,6 +71,7 @@ files:
71
71
  - _layouts/default.html
72
72
  - _layouts/page.html
73
73
  - _layouts/post.html
74
+ - _sass/web-mapping-theme.scss
74
75
  - assets/css/main.scss
75
76
  - assets/img/favicon-120.png
76
77
  - assets/img/favicon-152.png
@@ -89,7 +90,6 @@ files:
89
90
  - data/DOITT_THEATER_01_13SEPT2010.geojson
90
91
  - data/boroughs.geojson
91
92
  - data/subways.geojson
92
- - index.md
93
93
  homepage: https://github.com/wslerry/web-mapping
94
94
  licenses:
95
95
  - MIT
data/_config.yml DELETED
@@ -1,27 +0,0 @@
1
- title: Web Mapping in Jekyll # Your website title
2
- author: Hello World. # change this to your name
3
- email: helloworld@mail.com # chnage this to your email
4
- description: >- # this means to ignore newlines until "baseurl:"
5
- A leaflet map in Jekyll
6
- baseurl: ""
7
- url: ""
8
- port: 4001
9
- google_analytics: UA-000000000-0
10
- markdown: kramdown
11
- # remote_theme: "wslerry/web-mapping"
12
- theme: web-mapping
13
-
14
- plugins:
15
- - jekyll-feed
16
- - jekyll-seo-tag
17
- # - github-pages
18
-
19
- exclude : [
20
- ".gitignore",
21
- "Gemfile",
22
- "Gemfile.lock",
23
- "web-mapping.gemspec",
24
- "README.md",
25
- "LICENSE.txt",
26
- "examples"
27
- ]
data/index.md DELETED
@@ -1,3 +0,0 @@
1
- ---
2
- layout: page
3
- ---