fix indentation

This commit is contained in:
Sarah Hoffmann
2013-11-23 13:14:42 +01:00
parent e9222ba4c6
commit b544a8c590

View File

@@ -309,36 +309,36 @@
return $aSearchResults; return $aSearchResults;
} }
/* Perform the actual query lookup. /* Perform the actual query lookup.
Returns an ordered list of results, each with the following fields: Returns an ordered list of results, each with the following fields:
osm_type: type of corresponding OSM object osm_type: type of corresponding OSM object
N - node N - node
W - way W - way
R - relation R - relation
P - postcode (internally computed) P - postcode (internally computed)
osm_id: id of corresponding OSM object osm_id: id of corresponding OSM object
class: general object class (corresponds to tag key of primary OSM tag) class: general object class (corresponds to tag key of primary OSM tag)
type: subclass of object (corresponds to tag value of primary OSM tag) type: subclass of object (corresponds to tag value of primary OSM tag)
admin_level: see http://wiki.openstreetmap.org/wiki/Admin_level admin_level: see http://wiki.openstreetmap.org/wiki/Admin_level
rank_search: rank in search hierarchy rank_search: rank in search hierarchy
(see also http://wiki.openstreetmap.org/wiki/Nominatim/Development_overview#Country_to_street_level) (see also http://wiki.openstreetmap.org/wiki/Nominatim/Development_overview#Country_to_street_level)
rank_address: rank in address hierarchy (determines orer in address) rank_address: rank in address hierarchy (determines orer in address)
place_id: internal key (may differ between different instances) place_id: internal key (may differ between different instances)
country_code: ISO country code country_code: ISO country code
langaddress: localized full address langaddress: localized full address
placename: localized name of object placename: localized name of object
ref: content of ref tag (if available) ref: content of ref tag (if available)
lon: longitude lon: longitude
lat: latitude lat: latitude
importance: importance of place based on Wikipedia link count importance: importance of place based on Wikipedia link count
addressimportance: cumulated importance of address elements addressimportance: cumulated importance of address elements
extra_place: type of place (for admin boundaries, if there is a place tag) extra_place: type of place (for admin boundaries, if there is a place tag)
aBoundingBox: bounding Box aBoundingBox: bounding Box
label: short description of the object class/type (English only) label: short description of the object class/type (English only)
name: full name (currently the same as langaddress) name: full name (currently the same as langaddress)
foundorder: further ordering value for places with same importance foundorder: further ordering value for places with same importance
*/ */
function lookup() function lookup()
{ {
if (!$this->sQuery && !$this->aStructuredQuery) return false; if (!$this->sQuery && !$this->aStructuredQuery) return false;