{% extends 'base.html' %} {% load keyvalue %} {% block content %}

{{feature_set.name}}

{% if feature_set.is_syncing %}

Feature Set Syncing ...

You just keep clicking refresh.

{% else %}

API

For details, check the API docs.

The Resource

{{ api_url }}

Examples

Search by Bounding Box

{{ api_url }}?bbox={{ bounds.0|floatformat:3 }},{{ bounds.1|floatformat:3 }},{{ bounds.2|floatformat:3 }},{{ bounds.3|floatformat:3 }}

Search by Point and Radius

{{ api_url }}?lat={{ center_lat|floatformat:3 }}&lon={{ center_lng|floatformat:3 }}&distance=3000

Preview Features

{% for prop_key in prop_keys %} {% endfor %} {% for feature in features %} {% for prop_key in prop_keys %} {% endfor %} {% endfor %}
{{ prop_key }}
{{ feature|keyvalue:prop_key }}
{{ start_index }} - {{ end_index }} of {{ count }}
{% endif %} {% endblock %} {% block javascript %} {% endblock %} {% block css %} {% endblock %}