forked from Snck3rs/contao-leaflet-maps
Switch to PSR-4.
This commit is contained in:
168
src/Definition/Layer/OverpassLayer.php
Normal file
168
src/Definition/Layer/OverpassLayer.php
Normal file
@@ -0,0 +1,168 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package netzmacht
|
||||
* @author David Molineus <david.molineus@netzmacht.de>
|
||||
* @copyright 2016 netzmacht David Molineus. All rights reserved.
|
||||
* @filesource
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Netzmacht\Contao\Leaflet\Definition\Layer;
|
||||
|
||||
use Netzmacht\JavascriptBuilder\Encoder;
|
||||
use Netzmacht\JavascriptBuilder\Type\AnonymousFunction;
|
||||
use Netzmacht\JavascriptBuilder\Type\ConvertsToJavascript;
|
||||
use Netzmacht\JavascriptBuilder\Type\Expression;
|
||||
use Netzmacht\LeafletPHP\Definition\AbstractLayer;
|
||||
use Netzmacht\LeafletPHP\Definition\HasOptions;
|
||||
use Netzmacht\LeafletPHP\Encoder\EncodeHelperTrait;
|
||||
|
||||
/**
|
||||
* Class OverpassLayer provides implementation of https://github.com/kartenkarsten/leaflet-layer-overpass.
|
||||
*
|
||||
* @package Netzmacht\LeafletPHP\Plugins\OverpassLayer
|
||||
*/
|
||||
class OverpassLayer extends AbstractLayer implements HasOptions, ConvertsToJavascript
|
||||
{
|
||||
use EncodeHelperTrait;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function getType()
|
||||
{
|
||||
return 'OverpassLayer';
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function getRequiredLibraries()
|
||||
{
|
||||
$libs = parent::getRequiredLibraries();
|
||||
$libs[] = 'osmtogeojson';
|
||||
|
||||
return $libs;
|
||||
}
|
||||
|
||||
/**
|
||||
* OverpassLayer constructor.
|
||||
*
|
||||
* @param string $identifier Indicator of the layer.
|
||||
* @param array $options Options.
|
||||
*/
|
||||
public function __construct($identifier, array $options = [])
|
||||
{
|
||||
parent::__construct($identifier);
|
||||
|
||||
$this->setOptions($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the query.
|
||||
*
|
||||
* @param string $query Query.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setQuery($query)
|
||||
{
|
||||
return $this->setOption('query', $query);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get query.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getQuery()
|
||||
{
|
||||
return $this->getOption('query', '(node(BBOX)[organic];node(BBOX)[second_hand];);out qt;');
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint.
|
||||
*
|
||||
* @param string $endpoint Endpoint.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setEndpoint($endpoint)
|
||||
{
|
||||
return $this->setOption('endpoint', $endpoint);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get endpoint.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getEndpoint()
|
||||
{
|
||||
return $this->getOption('endpoint', '//overpass-api.de/api/');
|
||||
}
|
||||
|
||||
/**
|
||||
* Set point to layer function.
|
||||
*
|
||||
* @param Expression|AnonymousFunction $function The function callback.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setPointToLayer($function)
|
||||
{
|
||||
return $this->setOption('pointToLayer', $function);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set on each feature function.
|
||||
*
|
||||
* @param Expression|AnonymousFunction $function The function callback.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOnEachFeature($function)
|
||||
{
|
||||
return $this->setOption('onEachFeature', $function);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the minZoom.
|
||||
*
|
||||
* @param int $minZoom MinZoom.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setMinZoom($minZoom)
|
||||
{
|
||||
return $this->setOption('minZoom', (int) $minZoom);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get minZoom.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getMinZoom()
|
||||
{
|
||||
return $this->getOption('minZoom', 15);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function encode(Encoder $encoder, $flags = null)
|
||||
{
|
||||
$buffer = sprintf(
|
||||
'%s = new L.OverPassLayer(%s)%s',
|
||||
$encoder->encodeReference($this),
|
||||
$encoder->encodeArray($this->getOptions(), JSON_FORCE_OBJECT),
|
||||
$encoder->close($flags)
|
||||
);
|
||||
|
||||
$buffer .= $this->encodeMethodCalls($this->getMethodCalls(), $encoder, $flags);
|
||||
|
||||
return $buffer;
|
||||
}
|
||||
}
|
||||
32
src/Definition/Style.php
Normal file
32
src/Definition/Style.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package contao-leaflet-maps
|
||||
* @author David Molineus <david.molineus@netzmacht.de>
|
||||
* @copyright 2014-2016 netzmacht David Molineus
|
||||
* @license LGPL 3.0
|
||||
* @filesource
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Netzmacht\Contao\Leaflet\Definition;
|
||||
|
||||
use Netzmacht\LeafletPHP\Definition;
|
||||
use Netzmacht\LeafletPHP\Definition\Vector\Path;
|
||||
|
||||
/**
|
||||
* Interface Style describes a style definition.
|
||||
*
|
||||
* @package Netzmacht\Contao\Leaflet\Definition
|
||||
*/
|
||||
interface Style extends Definition
|
||||
{
|
||||
/**
|
||||
* Apply style to a given vector.
|
||||
*
|
||||
* @param Path $vector The vector path.
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function apply(Path $vector);
|
||||
}
|
||||
291
src/Definition/Style/FixedStyle.php
Normal file
291
src/Definition/Style/FixedStyle.php
Normal file
@@ -0,0 +1,291 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package contao-leaflet-maps
|
||||
* @author David Molineus <david.molineus@netzmacht.de>
|
||||
* @copyright 2014-2016 netzmacht David Molineus
|
||||
* @license LGPL 3.0
|
||||
* @filesource
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Netzmacht\Contao\Leaflet\Definition\Style;
|
||||
|
||||
use Netzmacht\Contao\Leaflet\Definition\Style;
|
||||
use Netzmacht\LeafletPHP\Definition\AbstractDefinition;
|
||||
use Netzmacht\LeafletPHP\Definition\OptionsTrait;
|
||||
use Netzmacht\LeafletPHP\Definition\Vector\Path;
|
||||
|
||||
/**
|
||||
* Class FixedStyle is a style which simple has fixed definitions.
|
||||
*
|
||||
* @package Netzmacht\Contao\Leaflet\Definition\Style
|
||||
*/
|
||||
class FixedStyle extends AbstractDefinition implements Style
|
||||
{
|
||||
use OptionsTrait;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function getType()
|
||||
{
|
||||
return 'Style';
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the stroke value.
|
||||
*
|
||||
* @param bool $value If true a stroke is drwan.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-stroke
|
||||
*/
|
||||
public function setStroke($value)
|
||||
{
|
||||
return $this->setOption('stroke', (bool) $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if stroke is enabled.
|
||||
*
|
||||
* @return bool
|
||||
* @see http://leafletjs.com/reference.html#path-stroke
|
||||
*/
|
||||
public function hasStroke()
|
||||
{
|
||||
return $this->getOption('stroke', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the stroke color.
|
||||
*
|
||||
* @param string $value Stroke color.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-color
|
||||
*/
|
||||
public function setColor($value)
|
||||
{
|
||||
return $this->setOption('color', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the stroke color.
|
||||
*
|
||||
* @return string
|
||||
* @see http://leafletjs.com/reference.html#path-color
|
||||
*/
|
||||
public function getColor()
|
||||
{
|
||||
return $this->getOption('color', '#03f');
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the stroke weight.
|
||||
*
|
||||
* @param int $value Stroke weight.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-weight
|
||||
*/
|
||||
public function setWeight($value)
|
||||
{
|
||||
return $this->setOption('weight', (int) $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the stroke weight.
|
||||
*
|
||||
* @return int
|
||||
* @see http://leafletjs.com/reference.html#path-weight
|
||||
*/
|
||||
public function getWeight()
|
||||
{
|
||||
return $this->getOption('weight', 5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the opacity.
|
||||
*
|
||||
* @param float $value Path opacity.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-opacity
|
||||
*/
|
||||
public function setOpacity($value)
|
||||
{
|
||||
return $this->setOption('opacity', (float) $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get opacity.
|
||||
*
|
||||
* @return float
|
||||
* @see http://leafletjs.com/reference.html#path-opacity
|
||||
*/
|
||||
public function getOpacity()
|
||||
{
|
||||
return $this->getOption('opacity', 0.5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fill the path.
|
||||
*
|
||||
* @param bool|string $value If true a fill is drwan.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-fill
|
||||
*/
|
||||
public function setFill($value)
|
||||
{
|
||||
return $this->setOption('fill', (bool) $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if fill is enabled.
|
||||
*
|
||||
* @return bool|string
|
||||
* @see http://leafletjs.com/reference.html#path-fill
|
||||
*/
|
||||
public function isFill()
|
||||
{
|
||||
return $this->getOption('fill', 'depends');
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the stroke fill color.
|
||||
*
|
||||
* @param string $value Stroke fill color.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-fillcolor
|
||||
*/
|
||||
public function setFillColor($value)
|
||||
{
|
||||
return $this->setOption('fillColor', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the stroke fill color.
|
||||
*
|
||||
* @return string
|
||||
* @see http://leafletjs.com/reference.html#path-fillcolor
|
||||
*/
|
||||
public function getFillColor()
|
||||
{
|
||||
return $this->getOption('fillColor', '#03f');
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the fill opacity.
|
||||
*
|
||||
* @param float $value Fill opacity.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-fillopacity
|
||||
*/
|
||||
public function setFillOpacity($value)
|
||||
{
|
||||
return $this->setOption('fillOpacity', (float) $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fill opacity.
|
||||
*
|
||||
* @return float
|
||||
* @see http://leafletjs.com/reference.html#path-fillopacity
|
||||
*/
|
||||
public function getFillOpacity()
|
||||
{
|
||||
return $this->getOption('fillOpacity', 0.2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the stroke dash pattern.
|
||||
*
|
||||
* @param string $value The dash pattern.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-dasharray
|
||||
* @see https://developer.mozilla.org/en/SVG/Attribute/stroke-dasharray
|
||||
*/
|
||||
public function setDashArray($value)
|
||||
{
|
||||
return $this->setOption('dashArray', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get stroke dash pattern.
|
||||
*
|
||||
* @return float
|
||||
* @see http://leafletjs.com/reference.html#path-dasharray
|
||||
* @see https://developer.mozilla.org/en/SVG/Attribute/stroke-dasharray
|
||||
*/
|
||||
public function getDashArray()
|
||||
{
|
||||
return $this->getOption('dashArray', null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set line cap string.
|
||||
*
|
||||
* @param string $value The line cap.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-linecap
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-linecap
|
||||
*/
|
||||
public function setLineCap($value)
|
||||
{
|
||||
return $this->setOption('lineCap', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the line cap string.
|
||||
*
|
||||
* @return float
|
||||
* @see http://leafletjs.com/reference.html#path-linecap
|
||||
* @see https://developer.mozilla.org/en/SVG/Attribute/stroke-linecap
|
||||
*/
|
||||
public function getLineCap()
|
||||
{
|
||||
return $this->getOption('lineCap', null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set line cap string.
|
||||
*
|
||||
* @param string $value The line cap.
|
||||
*
|
||||
* @return $this
|
||||
* @see http://leafletjs.com/reference.html#path-linejoin
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-linejoin
|
||||
*/
|
||||
public function setLineJoin($value)
|
||||
{
|
||||
return $this->setOption('lineJoin', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the line cap string.
|
||||
*
|
||||
* @return float
|
||||
* @see http://leafletjs.com/reference.html#path-linejoin
|
||||
* @see https://developer.mozilla.org/en/SVG/Attribute/stroke-linejoin
|
||||
*/
|
||||
public function getLineJoin()
|
||||
{
|
||||
return $this->getOption('lineJoin', null);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function apply(Path $vector)
|
||||
{
|
||||
$vector->setOptions($this->getOptions());
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user