jekyll-webmaps-simple-theme 0.1.4 → 0.1.5
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/_data/mapdata.yml +2 -3
- data/_includes/head.html +8 -5
- data/_includes/map.html +23 -6
- data/_layouts/default.html +1 -9
- data/_layouts/page.html +0 -2
- data/_layouts/post.html +3 -0
- data/{_sass/bootstrap.min.scss → assets/css/bootstrap.min.css} +0 -0
- data/assets/css/bootstrap.min.css.map +1 -0
- data/{_sass/font-awesome.min.scss → assets/css/font-awesome.min.css} +0 -0
- data/assets/css/main.css +761 -4189
- data/index.md +1 -1
- metadata +6 -6
- data/_sass/jekyll-webmaps-simple-theme.scss +0 -1090
- data/assets/css/backup/main.scss +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96a853947b6bf0201080d2d6d86c7c8c37c7b97680542532025ee4ab372ef980
|
|
4
|
+
data.tar.gz: 1c9103a6da5d95ed4cbf8a0ee797a783c2f00a251fe6d247b541594d0939c21a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd8ae01defebdd729e45faa63403e3ef08eba7fea627b1201b4e3a51b3381a7744f7673146886b9dff8e558d5d22c77ef7bcd466fb50ba0e4c7feb4100b08b0d
|
|
7
|
+
data.tar.gz: 98754e24e24648a3777566f4908264d83d1f2cf0e40852cc061a5a3991218fb9758e256e53c842c98c89838a835e765c7d9f95fc625ee25eef2866b95e275c2a
|
data/_data/mapdata.yml
CHANGED
data/_includes/head.html
CHANGED
|
@@ -15,12 +15,15 @@
|
|
|
15
15
|
<!-- - -->
|
|
16
16
|
|
|
17
17
|
<!-- CSS -->
|
|
18
|
-
<link rel="stylesheet" href="{{
|
|
18
|
+
<link rel="stylesheet" href="{{ site.url }}/assets/css/main.css" type="text/css">
|
|
19
|
+
<link rel="stylesheet" href="{{ site.url }}/assets/css/bootstrap.min.css" type="text/css">
|
|
20
|
+
<link rel="stylesheet" href="{{ site.url }}/assets/css/font-awesome.min.css" type="text/css">
|
|
21
|
+
|
|
19
22
|
<!-- JS -->
|
|
20
|
-
<script src="{{
|
|
21
|
-
<script src="{{
|
|
22
|
-
<script src="{{
|
|
23
|
-
<script src="{{
|
|
23
|
+
<script src="{{ site.url }}/assets/js/jquery.min.js"></script>
|
|
24
|
+
<script src="{{ site.url }}/assets/js/bootstrap.min.js"></script>
|
|
25
|
+
<script src="{{ site.url }}/assets/js/leaflet.js"></script>
|
|
26
|
+
<script src="{{ site.url }}/assets/js/Leaflet.fullscreen.min.js"></script>
|
|
24
27
|
{% for js in site.data.mapdata.base %}{% if js.extrajs == true %}<script type="text/javascript" src="{{ js.leaflet-js }}"></script>{% endif %}{% endfor %}
|
|
25
28
|
{% for js in site.data.mapdata.overlay %}{% if js.extrajs == true %}<script type="text/javascript" src="{{ js.leaflet-js }}"></script>{% endif %}{% endfor %}
|
|
26
29
|
|
data/_includes/map.html
CHANGED
|
@@ -50,23 +50,37 @@
|
|
|
50
50
|
{% if site.data.mapdata.load_geojson == true %}
|
|
51
51
|
|
|
52
52
|
{% for map in site.data.mapdata.geojson.point %}
|
|
53
|
-
function
|
|
53
|
+
function onEachPointFeature(feature, layer) {
|
|
54
54
|
// does this feature have a property named popupContent?
|
|
55
|
-
if (feature.properties && feature.properties.
|
|
56
|
-
layer.bindPopup(feature.properties.
|
|
55
|
+
if (feature.properties && feature.properties.{{ map.feat }}) {
|
|
56
|
+
layer.bindPopup(feature.properties.{{ map.feat }});
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
|
|
59
|
+
|
|
60
|
+
var {{ map.id }}= L.geoJson(null,{onEachFeature: onEachPointFeature});
|
|
60
61
|
$.getJSON("{{ map.url }}", function(data){ {{ map.id }}.addData(data);});
|
|
61
62
|
{% endfor %}
|
|
62
63
|
|
|
63
64
|
{% for map in site.data.mapdata.geojson.polygon %}
|
|
64
|
-
|
|
65
|
+
function onEachPolygonFeature(feature, layer) {
|
|
66
|
+
// does this feature have a property named popupContent?
|
|
67
|
+
if (feature.properties && feature.properties.{{ map.feat }}) {
|
|
68
|
+
layer.bindPopup(feature.properties.{{ map.feat }});
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
var {{ map.id }}= L.geoJson(null,{onEachFeature: onEachPolygonFeature});
|
|
65
73
|
$.getJSON("{{ map.url }}", function(data){ {{ map.id }}.addData(data);});
|
|
66
74
|
{% endfor %}
|
|
67
75
|
|
|
68
76
|
{% for map in site.data.mapdata.geojson.line %}
|
|
69
|
-
|
|
77
|
+
function onEachLineFeature(feature, layer) {
|
|
78
|
+
// does this feature have a property named popupContent?
|
|
79
|
+
if (feature.properties && feature.properties.{{ map.feat }}) {
|
|
80
|
+
layer.bindPopup(feature.properties.{{ map.feat }});
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
var {{ map.id }}= L.geoJson(null,{onEachFeature: onEachLineFeature});
|
|
70
84
|
$.getJSON("{{ map.url }}", function(data){ {{ map.id }}.addData(data);});
|
|
71
85
|
{% endfor %}
|
|
72
86
|
|
|
@@ -117,4 +131,7 @@
|
|
|
117
131
|
map.addControl(new legend());
|
|
118
132
|
|
|
119
133
|
</script>
|
|
134
|
+
<script src="{{ site.url }}/assets/js/jquery.min.js"></script>
|
|
135
|
+
<script src="{{ site.url }}/assets/js/leaflet.js"></script>
|
|
136
|
+
<script src="{{ site.url }}/assets/js/Leaflet.fullscreen.min.js"></script>
|
|
120
137
|
</div>
|
data/_layouts/default.html
CHANGED
|
@@ -4,16 +4,8 @@
|
|
|
4
4
|
{% include head.html %}
|
|
5
5
|
|
|
6
6
|
<body>
|
|
7
|
-
{% include header.html %}
|
|
8
7
|
|
|
9
|
-
|
|
8
|
+
{{ content }}
|
|
10
9
|
|
|
11
|
-
{% include about.html %}
|
|
12
|
-
|
|
13
|
-
{% include contact.html %}
|
|
14
|
-
|
|
15
|
-
{{ content }}
|
|
16
|
-
|
|
17
|
-
{% include map.html %}
|
|
18
10
|
</body>
|
|
19
11
|
</html>
|
data/_layouts/page.html
CHANGED
data/_layouts/post.html
ADDED
|
File without changes
|