X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/ca5305661e4517f2aebfebfc61bfae920e615339..f942f7c3bf8792497a9d72f2567c1c7cd19f6140:/lib/lib.php diff --git a/lib/lib.php b/lib/lib.php index c1926bc7..8a491818 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -273,7 +273,7 @@ return false; /* - $fTotalFac is a suprisingly good indicator of accuracy + $fTotalFac is a surprisingly good indicator of accuracy $iZoom = 18 + round(log($fTotalFac,32)); $iZoom = max(13,min(18,$iZoom)); */ @@ -890,3 +890,17 @@ return $iPlaceID; } + + function loadStructuredAddressElement(&$aStructuredQuery, &$iMinAddressRank, &$iMaxAddressRank, $aParams, $sKey, $iNewMinAddressRank, $iNewMaxAddressRank) + { + if (!isset($_GET[$sKey])) return false; + $sValue = trim($_GET[$sKey]); + if (!$sValue) return false; + $aStructuredQuery[$sKey] = $sValue; + if ($iMinAddressRank == 0 && $iMaxAddressRank == 30) { + $iMinAddressRank = $iNewMinAddressRank; + $iMaxAddressRank = $iNewMaxAddressRank; + } + return true; + } +