X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/ab477736045a1e68dc7545140a04cb58c8a4a06e..b0d9c0598ea028890ce99c26ecbb9f7b3eeef1ad:/website/search.php diff --git a/website/search.php b/website/search.php index ecf584ae..8691aa91 100755 --- a/website/search.php +++ b/website/search.php @@ -13,7 +13,6 @@ $fLat = CONST_Default_Lat; $fLon = CONST_Default_Lon; $iZoom = CONST_Default_Zoom; - $sSuggestionURL = false; $oGeocode =& new Geocode($oDB); @@ -44,8 +43,6 @@ $bAsKML = (boolean)isset($_GET['polygon_kml']) && $_GET['polygon_kml']; $bAsSVG = (boolean)isset($_GET['polygon_svg']) && $_GET['polygon_svg']; $bAsText = (boolean)isset($_GET['polygon_text']) && $_GET['polygon_text']; - $fThreshold = 0.0; - if (isset($_GET['polygon_threshold'])) $fThreshold = (float)$_GET['polygon_threshold']; if ( ( ($bAsGeoJSON?1:0) + ($bAsKML?1:0) + ($bAsSVG?1:0) @@ -68,9 +65,13 @@ $oGeocode->setIncludePolygonAsGeoJSON($bAsGeoJSON); $oGeocode->setIncludePolygonAsKML($bAsKML); $oGeocode->setIncludePolygonAsSVG($bAsSVG); - $oGeocode->setPolygonSimplificationThreshold($fThreshold); } + // Polygon simplification threshold (optional) + $fThreshold = 0.0; + if (isset($_GET['polygon_threshold'])) $fThreshold = (float)$_GET['polygon_threshold']; + $oGeocode->setPolygonSimplificationThreshold($fThreshold); + $oGeocode->loadParamArray($_GET); if (CONST_Search_BatchMode && isset($_GET['batch']))