File tree Expand file tree Collapse file tree 4 files changed +33
-22
lines changed Expand file tree Collapse file tree 4 files changed +33
-22
lines changed Original file line number Diff line number Diff line change 1
1
# dont need this anymore, but useful for test deployment
2
2
# requires separate service providing postgres database
3
- version : ' 3'
4
-
5
3
services :
6
4
pygeoapi :
7
5
build : .
Original file line number Diff line number Diff line change @@ -6444,7 +6444,7 @@ button.bg-light:focus {
6444
6444
}
6445
6445
6446
6446
.bg-dark , .bg-dark a {
6447
- background-color : # 1e1446 !important ;
6447
+ background-color : # 1B335F !important ;
6448
6448
color : # fff ;
6449
6449
}
6450
6450
@@ -9864,8 +9864,8 @@ a:focus {
9864
9864
}
9865
9865
9866
9866
.bg-gradient-primary {
9867
- background-color : # 4e73df ;
9868
- background-image : linear-gradient (180deg , # 4e73df 10 % , # 224abe 100% );
9867
+ background-color : # 00A087 ;
9868
+ background-image : linear-gradient (180deg , # 1B335F 33 % , # 00A087 100% );
9869
9869
background-size : cover;
9870
9870
}
9871
9871
Original file line number Diff line number Diff line change @@ -11,21 +11,34 @@ <h1>Queryables of {{ data['title'] }}</h1>
11
11
< p >
12
12
For this collection these queryable parameters are available.
13
13
</ p >
14
- < table class ="table table-striped ">
15
- < thead >
16
- < tr >
17
- < th > Queryable</ th >
18
- < th > Type</ th >
19
- </ tr >
20
- </ thead >
21
- < tbody >
22
- {% for queryable in data['queryables'] %}
23
- < tr >
24
- < td > {{ queryable['queryable'] }} </ td >
25
- < td > {{ queryable['type'] }}</ td >
26
- </ tr >
27
- {% endfor %}
28
- </ tbody >
29
- </ table >
14
+ < div class ="row ">
15
+ < div class ="col-lg-6 ">
16
+ < table class ="table table-striped ">
17
+ < thead >
18
+ < tr >
19
+ < th > Queryable</ th >
20
+ < th > Type</ th >
21
+ </ tr >
22
+ </ thead >
23
+ < tbody >
24
+ {% for qname, qinfo in data['properties'].items() %}
25
+ < tr >
26
+ {% if qname == 'geometry' %}
27
+ < th > geometry</ th >
28
+ < td > < a href ="{{ qinfo['$ref'] }} "> {{ qname }} </ a > </ td >
29
+ {% else %}
30
+ < th > {{ qname }} </ th >
31
+ < td > < code > {{ qinfo['type'] }}</ code > </ td >
32
+ {% if 'format' in qinfo %}
33
+ (< code > {{ qinfo['format'] }}</ code > )
34
+ {% endif %}
35
+ {% endif %}
36
+ </ tr >
37
+ {% endfor %}
38
+ </ tbody >
39
+ </ table >
40
+ </ div >
41
+ </ div >
30
42
</ section >
31
43
{% endblock %}
44
+
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ server:
40
40
language : en-US
41
41
cors : true
42
42
pretty_print : true
43
- limit : 100
43
+ limit : 500
44
44
map :
45
45
url : https://tile.openstreetmap.org/{z}/{x}/{y}.png
46
46
attribution : ' <a href="https://www.openstreetmap.org/copyright">© OpenStreetMap contributors</a>'
You can’t perform that action at this time.
0 commit comments