From 73b8e6b04f4eca34fa96443ec8a7ba041d84dcfa Mon Sep 17 00:00:00 2001 From: Franzz Date: Wed, 23 Apr 2025 11:02:16 +0200 Subject: [PATCH] Add Build GeoJSON Catch --- lib/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/index.php b/lib/index.php index 47686a3..28d4674 100755 --- a/lib/index.php +++ b/lib/index.php @@ -92,6 +92,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); }