[ 'map-editor' => [ 'props' => [ 'defaultCenter' => function ($defaultCenter = [43.836699, 4.360054]) { return $defaultCenter; }, 'defaultZoom' => function ($defaultZoom = 13) { return $defaultZoom; }, 'maxMarkers' => function ($maxMarkers = 50) { return $maxMarkers; }, 'mode' => function ($mode = 'multi') { return $mode; }, 'latitude' => function ($latitude = null) { return $latitude; }, 'longitude' => function ($longitude = null) { return $longitude; }, 'markerIconUrl' => function ($markerIconUrl = null) { // Auto-detect marker icon from page files if ($markerIconUrl === null && $this->model()) { $iconFile = $this->model()->markerIcon()->toFile(); if ($iconFile) { return $iconFile->url(); } } return $markerIconUrl; }, 'markerIconSize' => function ($markerIconSize = 40) { // Auto-detect marker icon size from page if ($this->model() && $this->model()->markerIconSize()->isNotEmpty()) { return (int) $this->model()->markerIconSize()->value(); } return $markerIconSize; } ] ] ], 'api' => [ 'routes' => require __DIR__ . '/api/routes.php' ] ]);