27 lines
701 B
PHP
27 lines
701 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Map Editor Plugin for Kirby CMS
|
||
|
|
*
|
||
|
|
* Interactive map editor with MapLibre GL JS for creating
|
||
|
|
* print-ready maps with markers and rich content.
|
||
|
|
*/
|
||
|
|
|
||
|
|
Kirby::plugin('geoproject/map-editor', [
|
||
|
|
'fields' => [
|
||
|
|
'map-editor' => [
|
||
|
|
'props' => [
|
||
|
|
'defaultCenter' => function ($defaultCenter = [43.836699, 4.360054]) {
|
||
|
|
return $defaultCenter;
|
||
|
|
},
|
||
|
|
'defaultZoom' => function ($defaultZoom = 13) {
|
||
|
|
return $defaultZoom;
|
||
|
|
},
|
||
|
|
'maxMarkers' => function ($maxMarkers = 50) {
|
||
|
|
return $maxMarkers;
|
||
|
|
}
|
||
|
|
]
|
||
|
|
]
|
||
|
|
]
|
||
|
|
]);
|