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 OpenStreetMapBlackAndWhite extends Tile
{
/**
* @return string
*/
public function layer(): string
return 'http://{s}.tiles.wmflabs.org/bw-mapnik/{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;