diff --git a/src/Controller/MapAdminController.php b/src/Controller/MapAdminController.php index cf3acbc..2cf280f 100644 --- a/src/Controller/MapAdminController.php +++ b/src/Controller/MapAdminController.php @@ -155,7 +155,11 @@ class MapAdminController implements ISecured $modify = new Modify(\Container::$dbConnection, 'maps'); $modify->fill([ 'name' => self::$unnamedMapName, - 'description' => '' + 'description' => '', + 'bound_south_lat' => 0.0, + 'bound_west_lng' => 0.0, + 'bound_north_lat' => 0.0, + 'bound_east_lng' => 0.0 ]); $modify->save();