PHP code example of cowegis / cowegis-contao-draw-widget-bundle
1. Go to this page and download the library: Download cowegis/cowegis-contao-draw-widget-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cowegis / cowegis-contao-draw-widget-bundle example snippets
$GLOBALS['TL_DCA']['tl_example']['fields']['vectors'] = [
'inputType' => 'cowegis_draw',
'sql' => 'blob NULL',
'eval' => [
// Height of the widget, defaults to 500px
'height' => '500px',
// Toolbar options, see https://www.geoman.io/docs/toolbar
// Default:
'toolbar' => [
'position' => 'bottomleft',
],
// Leaflet map options, see https://leafletjs.com/reference.html#map-option
// Default:
'map' => [
"maxZoom" => 15,
"minZoom" => 2,
"center" => [0, 0],
"zoom" => 2,
],
// Maximum number of vector elements. Toolbar draw buttons get disabled when used.
'limit' => null
]
];
$GLOBALS['TL_DCA']['tl_example']['fields']['vectors'] = [
'inputType' => 'cowegis_draw',
'eval' => [
'callback' => function (array $options) {
var_dump($options);
return $options;
}
]
];