ini_set('memory_limit', '200M');
$oParams = new Nominatim\ParameterParser();
-$sOutputFormat = $oParams->getSet('format', array('html', 'json'), 'html');
+$sOutputFormat = $oParams->getSet('format', array('json'), 'json');
set_exception_handler_by_format($sOutputFormat);
$oDB = new Nominatim\DB();
}
if ($sOutputFormat == 'json') {
- echo javascript_renderData($aPolygons);
-} else {
- include(CONST_BasePath.'/lib/template/deletable-html.php');
+ javascript_renderData($aPolygons);
}