Skip to content

Commit

Permalink
flightDurationSeconds default values is now 3 secontds instead of 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
glughi committed Feb 27, 2019
1 parent 1c4cd57 commit de95b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ViewModels/NominatimSearchProviderViewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var NominatimSearchProviderViewModel = function(options) {
if (this.url.length > 0 && this.url[this.url.length - 1] !== '/') {
this.url += '/';
}
this.flightDurationSeconds = defaultValue(options.flightDurationSeconds, 1.5);
this.flightDurationSeconds = defaultValue(options.flightDurationSeconds, 3.0);
this.limitBounded = 2;
this.limitOthers = 2;
};
Expand Down

0 comments on commit de95b2b

Please sign in to comment.