Merge pull request #361 from betagouv/api-geo-boost
Améliore la pertinence des résultats pour l'auto-complétion des noms de communepull/362/head
commit
2a6f885aa9
|
@ -9,7 +9,7 @@ let getOptions = input =>
|
|||
input.length < 3
|
||||
? Promise.resolve({ options: [] })
|
||||
: fetch(
|
||||
`https://geo.api.gouv.fr/communes?nom=${input}&fields=nom,code,departement,region&`
|
||||
`https://geo.api.gouv.fr/communes?nom=${input}&fields=nom,code,departement,region&boost=population`
|
||||
)
|
||||
.then(response => {
|
||||
if (!response.ok)
|
||||
|
|
Loading…
Reference in New Issue