From bc75cbc17dc3495e07c8e77d808e6bbdc990ce53 Mon Sep 17 00:00:00 2001 From: Franzz Date: Wed, 23 Apr 2025 11:02:16 +0200 Subject: [PATCH] Add Build GeoJSON Catch --- index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.php b/index.php index edfea99..f714139 100755 --- a/index.php +++ b/index.php @@ -88,6 +88,9 @@ if($sAction!='') case 'sql': $sResult = $oSpot->getDbBuildScript(); break; + case 'build_geojson': + $sResult = $oSpot->buildGeoJSON($sName); + break; default: $sResult = Main::getJsonResult(false, Main::NOT_FOUND); }