Files
contao-leaflet-maps/src/Mapper/Control/ScaleControlMapper.php

45 lines
959 B
PHP
Raw Normal View History

2015-01-05 12:25:46 +01:00
<?php
/**
2016-10-11 10:40:15 +02:00
* @package contao-leaflet-maps
2015-01-05 12:25:46 +01:00
* @author David Molineus <david.molineus@netzmacht.de>
2016-10-11 10:40:15 +02:00
* @copyright 2014-2016 netzmacht David Molineus
2015-01-05 12:25:46 +01:00
* @license LGPL 3.0
* @filesource
*
*/
namespace Netzmacht\Contao\Leaflet\Mapper\Control;
/**
* Class ScaleControlMapper maps the database item of the type "scale" to the scale control.
*
* @package Netzmacht\Contao\Leaflet\Mapper\Control
*/
class ScaleControlMapper extends AbstractControlMapper
{
/**
* Class of the definition being created.
*
* @var string
*/
protected static $definitionClass = 'Netzmacht\LeafletPHP\Definition\Control\Scale';
/**
* Layer type.
*
* @var string
*/
protected static $type = 'scale';
/**
* {@inheritdoc}
*/
protected function initialize()
{
parent::initialize();
$this->optionsBuilder->addOptions('maxWidth', 'metric', 'imperial', 'updateWhenIdle');
2015-01-05 12:25:46 +01:00
}
}