X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/1d0da944a66924960eb48f2225d4717c28006cea..7a964efb3a104e304be7620dc18fa123559f05c8:/website/lookup.php diff --git a/website/lookup.php b/website/lookup.php index 71c93715..695a083a 100755 --- a/website/lookup.php +++ b/website/lookup.php @@ -11,7 +11,7 @@ ini_set('memory_limit', '200M'); $oParams = new Nominatim\ParameterParser(); // Format for output -$sOutputFormat = $oParams->getSet('format', array('xml', 'json'), 'xml'); +$sOutputFormat = $oParams->getSet('format', array('xml', 'json', 'geojson'), 'xml'); // Preferred language $aLangPrefOrder = $oParams->getPreferredLanguages(); @@ -66,4 +66,5 @@ $bShowPolygons = ''; $aExcludePlaceIDs = array(); $sMoreURL = ''; -include(CONST_BasePath.'/lib/template/search-'.$sOutputFormat.'.php'); +$sOutputTemplate = ($sOutputFormat == 'jsonv2') ? 'json' : $sOutputFormat; +include(CONST_BasePath.'/lib/template/search-'.$sOutputTemplate.'.php');