Hello, I have simple problem: I am using Nominatim to get the list of pharmacies in London. I always get 50 results, regardless of what I set to limit. Any ideas what I do wrong? I using such javascript code:
Thanks! asked 28 Jul '17, 12:00 marcin galazka |
Maximum 50 results is a hardcoded limit in the Nominatim logic for For a list of POIs considering using the http://overpass-turbo.eu/ tool. answered 28 Jul '17, 12:37 mtmail |
Correct, if you have access to the API files, you can change this.
The limit is defined in Geolocate.php on line 100
Here you can make the limit higher or remove it by removing the if statement (just don't forget to change the I found this file under
If however your file is not there you can find your path in 'project-folder'/website/search.php: answered 06 May '22, 23:18 ossycraft |