]> git.openstreetmap.org Git - nominatim.git/blobdiff - website/search.php
Do not apply limit where we have a sub-search
[nominatim.git] / website / search.php
index 6596fca4c77edb3008a8211fca3ab77d0297e00b..1efb7ff5805a981fda5c51473a88801783c0f226 100755 (executable)
                                {
                                        unset($aPhrases[$iPhrase]);
                                }
                                {
                                        unset($aPhrases[$iPhrase]);
                                }
-                       }                       
+                       }
 
                        // reindex phrases - we make assumptions later on
                        $aPhrases = array_values($aPhrases);
 
                        // reindex phrases - we make assumptions later on
                        $aPhrases = array_values($aPhrases);
                                }
                        }
 */
                                }
                        }
 */
+
+                       foreach($aTokens as $sToken)
+                       {
+                               // Unknown single word token with a number - assume it is a house number
+                               if (!isset($aValidTokens[' '.$sToken]) && strpos($sToken,' ') === false && preg_match('/[0-9]/', $sToken))
+                               {
+                                       $aValidTokens[' '.$sToken] = array('class'=>'place','type'=>'house');
+                               }
+                       }
+
                        // Any words that have failed completely?
                        // TODO: suggestions
 
                        // Any words that have failed completely?
                        // TODO: suggestions
 
                                                                $sSQL .= " from search_name";
                                                                $sSQL .= " where ".join(' and ',$aTerms);
                                                                $sSQL .= " order by ".join(', ',$aOrder);
                                                                $sSQL .= " from search_name";
                                                                $sSQL .= " where ".join(' and ',$aTerms);
                                                                $sSQL .= " order by ".join(', ',$aOrder);
-                                                               if ($aSearch['sHouseNumber'])
+                                                               if ($aSearch['sHouseNumber'] || $aSearch['sClass'])
                                                                        $sSQL .= " limit 50";
                                                                elseif (!sizeof($aSearch['aName']) && !sizeof($aSearch['aAddress']) && $aSearch['sClass'])
                                                                        $sSQL .= " limit 1";
                                                                        $sSQL .= " limit 50";
                                                                elseif (!sizeof($aSearch['aName']) && !sizeof($aSearch['aAddress']) && $aSearch['sClass'])
                                                                        $sSQL .= " limit 1";
                                                                }
 
                                                                // Fallback to the road
                                                                }
 
                                                                // Fallback to the road
-                                                               if (!sizeof($aPlaceIDs) && preg_match('/^[0-9]+$/', $aSearch['sHouseNumber']))
+                                                               if (!sizeof($aPlaceIDs) && preg_match('/[0-9]+/', $aSearch['sHouseNumber']))
                                                                {
                                                                        $aPlaceIDs = $aRoadPlaceIDs;
                                                                }
                                                                {
                                                                        $aPlaceIDs = $aRoadPlaceIDs;
                                                                }
                        $aResult['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aClassType[$aResult['class'].':'.$aResult['type']]['icon'].'.p.20.png';
                }
 
                        $aResult['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aClassType[$aResult['class'].':'.$aResult['type']]['icon'].'.p.20.png';
                }
 
+               if (isset($aClassType[$aResult['class'].':'.$aResult['type']]['label']) 
+                       && $aClassType[$aResult['class'].':'.$aResult['type']]['label'])
+               {
+                       $aResult['label'] = $aClassType[$aResult['class'].':'.$aResult['type']]['label'];
+               }
+
                if ($bShowAddressDetails)
                {
                        $aResult['address'] = getAddressDetails($oDB, $sLanguagePrefArraySQL, $aResult['place_id'], $aResult['country_code']);
                if ($bShowAddressDetails)
                {
                        $aResult['address'] = getAddressDetails($oDB, $sLanguagePrefArraySQL, $aResult['place_id'], $aResult['country_code']);