initial commit

This commit is contained in:
Edward Betts 2019-08-18 15:56:53 +01:00
commit 2235675418
3 changed files with 247 additions and 0 deletions

20
templates/index.html Normal file
View file

@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Geocode to commons</title>
</head>
<body>
<h1>Geocode UK coordinates to Commons Category</h1>
<p>Examples</p>
<ul>
{% for lat, lon, name in samples %}
<li><a href="?lat={{ lat }}&lon={{ lon }}">{{ name }}</a> ({{ lat }}, {{ lon }})</li>
{% endfor %}
</ul>
</body>
</html>

27
templates/random.html Normal file
View file

@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Geocode to commons</title>
</head>
<body>
<h1>Geocode UK coordinates to Commons Category</h1>
<p>Random</p>
<p><a href="{{ url_for('index', lat=lat, lon=lon) }}">visit endpoint</a>
| <a href="https://www.openstreetmap.org/#map=17/{{lat }}/{{ lon }}">view in OSM</a></p>
<pre>{{ result | pprint }}</pre>
<p>({{ lat }}, {{ lon }}, {{result.commons_cat.title | pprint }}),</p>
{% for element in elements %}
<pre>{{ element | pprint }}</pre>
{% endfor %}
</body>
</html>