Skip to content

Commit

Permalink
Support places search in viewfinder view
Browse files Browse the repository at this point in the history
Replace lat,long-only search with search for reqular query strings.

fixes #2280
fixes #2270
fixes #1796
  • Loading branch information
ianguerin committed Mar 25, 2024
1 parent e3f0efa commit ce74f46
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ define([], function () {
this.view.getInput().trigger({ type: 'keyup', key: 'ArrowDown', });
}

hitArrowUp() {
this.view.getInput().trigger({ type: "keyup", key: 'ArrowUp', });
}

hitArrowDown() {
this.view.getInput().trigger({ type: "keyup", key: 'ArrowDown', });
}

getError() {
return this.view.$el.find('.viewfinder__error').text();
}
Expand Down

0 comments on commit ce74f46

Please sign in to comment.