diff --git a/docker-compose.yml b/docker-compose.yml index feebdf9..e510062 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,5 @@ # dont need this anymore, but useful for test deployment # requires separate service providing postgres database -version: '3' - services: pygeoapi: build: . diff --git a/pygeoapi-skin-dashboard/static/css/sb.css b/pygeoapi-skin-dashboard/static/css/sb.css index fb61b42..4bf5de7 100644 --- a/pygeoapi-skin-dashboard/static/css/sb.css +++ b/pygeoapi-skin-dashboard/static/css/sb.css @@ -6444,7 +6444,7 @@ button.bg-light:focus { } .bg-dark, .bg-dark a { - background-color: #1e1446 !important; + background-color: #1B335F !important; color: #fff; } @@ -9864,8 +9864,8 @@ a:focus { } .bg-gradient-primary { - background-color: #4e73df; - background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%); + background-color: #00A087; + background-image: linear-gradient(180deg, #1B335F 33%, #00A087 100%); background-size: cover; } diff --git a/pygeoapi-skin-dashboard/templates/collections/queryables.html b/pygeoapi-skin-dashboard/templates/collections/queryables.html index bb2a971..30ed08d 100644 --- a/pygeoapi-skin-dashboard/templates/collections/queryables.html +++ b/pygeoapi-skin-dashboard/templates/collections/queryables.html @@ -11,21 +11,34 @@

Queryables of {{ data['title'] }}

For this collection these queryable parameters are available.

- - - - - - - - - {% for queryable in data['queryables'] %} - - - - - {% endfor %} - -
QueryableType
{{ queryable['queryable'] }} {{ queryable['type'] }}
+
+
+ + + + + + + + + {% for qname, qinfo in data['properties'].items() %} + + {% if qname == 'geometry' %} + + + {% else %} + + + {% if 'format' in qinfo %} + ({{ qinfo['format'] }}) + {% endif %} + {% endif %} + + {% endfor %} + +
QueryableType
geometry{{ qname }} {{ qname }} {{ qinfo['type'] }}
+
+
{% endblock %} + diff --git a/pygeoapi.config.yml b/pygeoapi.config.yml index 98e96de..7541c09 100644 --- a/pygeoapi.config.yml +++ b/pygeoapi.config.yml @@ -40,7 +40,7 @@ server: language: en-US cors: true pretty_print: true - limit: 100 + limit: 500 map: url: https://tile.openstreetmap.org/{z}/{x}/{y}.png attribution: '© OpenStreetMap contributors'