bbox-feature-server 0.6.1

BBOX OGC API Features Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block title %}Queryables{% endblock %}
{% block content_title %}{{ queryables.title }} Item{% endblock %}

{% block content %}
<article class="prose">
<a href="/collections/{{queryables.title}}/queryables.json">JSON</a><br/>
</article>

<h2>Queryables</h2>
<ul>
    {% for prop in queryables.properties %}
      <li>{{prop}} ({{queryables.properties[prop].type}})</li>
    {% endfor %}
</ul>
{% endblock %}