You are here

OpenStreetMapMapnik.php in Geofield Map 8.2

File

src/Plugin/LeafletTileLayerPlugin/OpenStreetMapMapnik.php
View source
<?php

namespace Drupal\geofield_map\Plugin\LeafletTileLayerPlugin;

use Drupal\geofield_map\LeafletTileLayerPluginBase;

/**
 * Provides an OpenStreetMap_Mapnik Leaflet TileLayer Plugin.
 *
 * @LeafletTileLayerPlugin(
 *   id = "OpenStreetMap_Mapnik",
 *   label = "OpenStreetMap Mapnik",
 *   url = "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
 *   options = {
 *     "maxZoom" = 19,
 *     "attribution" = "&copy;
 * <a href='http://www.openstreetmap.org/copyright'>OpenStreetMap</a>"
 *   }
 * )
 */
class OpenStreetMapMapnik extends LeafletTileLayerPluginBase {

}

Classes

Namesort descending Description
OpenStreetMapMapnik Provides an OpenStreetMap_Mapnik Leaflet TileLayer Plugin.