forked from edward/owl-map
No need to drop geotext from search output
This commit is contained in:
parent
072e5167db
commit
d4eb60fe33
|
@ -344,8 +344,6 @@ def api_search():
|
||||||
q = request.args["q"]
|
q = request.args["q"]
|
||||||
hits = nominatim.lookup(q)
|
hits = nominatim.lookup(q)
|
||||||
for hit in hits:
|
for hit in hits:
|
||||||
if "geotext" in hit:
|
|
||||||
del hit["geotext"]
|
|
||||||
hit["name"] = nominatim.get_hit_name(hit)
|
hit["name"] = nominatim.get_hit_name(hit)
|
||||||
hit["label"] = nominatim.get_hit_label(hit)
|
hit["label"] = nominatim.get_hit_label(hit)
|
||||||
hit["address"] = list(hit["address"].items())
|
hit["address"] = list(hit["address"].items())
|
||||||
|
|
Loading…
Reference in a new issue