for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Leaflet\Tiles;
use Bavix\Leaflet\Tile;
class OpenStreetMapDE extends Tile
{
/**
* @return string
*/
public function layer(): string
return 'https://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png';
}
public function attribution(): string
return '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>';
* @return int
public function maxZoom(): int
return 18;