Improve region search by substring
This commit is contained in:
parent
88670681f3
commit
b9c28019c1
2 changed files with 2 additions and 2 deletions
|
@ -183,7 +183,7 @@ def search():
|
|||
)
|
||||
if cur.rowcount > 0:
|
||||
rec = cur.fetchone()
|
||||
return jsonify(bounds=[rec[0], rec[1], rec[2], rec[3]])
|
||||
return jsonify(status='ok', bounds=rec)
|
||||
return jsonify(status='not found')
|
||||
|
||||
|
||||
|
|
|
@ -381,7 +381,7 @@ function doSearch() {
|
|||
if( query.length > 1 ) {
|
||||
$.ajax(getServer('search'), {
|
||||
data: { 'q': query },
|
||||
success: zoomToFound
|
||||
success: makeAnswerHandler(zoomToFound)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue