-
Notifications
You must be signed in to change notification settings - Fork 0
/
xfiltered.html
85 lines (81 loc) · 1.9 KB
/
xfiltered.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
title: Filter
layout: map_list
description: "Maps categorized by the data layer"
---
<!-- Maps by data source -->
<h2> Maps categorized by data sources</h2>
<p class="bg-primary">KML</p>
<div class="row">
{% for map in site.maps %}
{% if map.layer contains "KML" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">SHP</p>
<div class="row">
{% for map in site.maps %}
{% if map.layer contains "SHP" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">ESRI Server</p>
<div class="row">
{% for map in site.maps %}
{% if map.layer contains "ESRI" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">WMS</p>
<div class="row">
{% for map in site.maps %}
{% if map.layer contains "WMS" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">GeoJSON/JSON</p>
<div class="row">
{% for map in site.maps %}
{% if map.layer contains "GeoJSON" or map.layer contains "JSON" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<!-- Maps by used application-->
<h2> Maps categorized by applications</h2>
<p class="bg-primary">ArcGIS (Online, JS API, WebApp)</p>
<div class="row">
{% for map in site.maps %}
{% if map.application contains "ArcGIS" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">Google Maps</p>
<div class="row">
{% for map in site.maps %}
{% if map.application contains "Google" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">OpenLayers</p>
<div class="row">
{% for map in site.maps %}
{% if map.application contains "OpenLayers" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>
<p class="bg-primary">LeafletJS + MapBox</p>
<div class="row">
{% for map in site.maps %}
{% if map.application contains "Leaflet" %}
{% include map_list.html %}
{% endif %}
{% endfor %}
</div>