From: Sarah Hoffmann Date: Thu, 6 Jul 2017 21:11:17 +0000 (+0200) Subject: remove lat/lon check for search terms X-Git-Tag: v3.1.0~88^2~16 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/5237f44c4a3361e321bea6bcd2a7e3390a3cbb9c?ds=sidebyside remove lat/lon check for search terms Was only used with GB postcodes which were removed. --- diff --git a/lib/Geocode.php b/lib/Geocode.php index a133d868..6f26b3cd 100644 --- a/lib/Geocode.php +++ b/lib/Geocode.php @@ -742,15 +742,6 @@ class Geocode } if ($aSearch['iSearchRank'] < $this->iMaxRank) $aNewWordsetSearches[] = $aSearch; } - } elseif (isset($aSearchTerm['lat']) && $aSearchTerm['lat'] !== '' && $aSearchTerm['lat'] !== null) { - if ($aSearch['oNear'] === false) { - $aSearch['oNear'] = new NearPoint( - $aSearchTerm['lat'], - $aSearchTerm['lon'], - $aSearchTerm['radius'] - ); - if ($aSearch['iSearchRank'] < $this->iMaxRank) $aNewWordsetSearches[] = $aSearch; - } } elseif ($sPhraseType == 'postalcode' || ($aSearchTerm['class'] == 'place' && $aSearchTerm['type'] == 'postcode')) { // We need to try the case where the postal code is the primary element (i.e. no way to tell if it is (postalcode, city) OR (city, postalcode) so try both if (isset($aSearchTerm['word_id']) && $aSearchTerm['word_id'] && strpos($sNormQuery, $this->normTerm($aSearchTerm['word'])) !== false) {