You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
countrycodes=at,de is correct. Uppercase works but inside the Nominatim database the codes are stored lowercase so we usually write them lowercase in documentation.
Config:
countrycodes: ["at", "de"]
(as per doc, array of iso country codes)Expected: URL generated as
countrycodes=at,de
Actual: Url generated as
0=at&1=de
Source of the problem: toQueryString method
Minimal test case
Workaround: using a comma-separated string instead of an array (i.e.
countrycodes:"at,de"
)If this is intended behavior the docs should be updated.
The text was updated successfully, but these errors were encountered: