geofield_map-8.x-2.67/src/Plugin/LeafletTileLayerPlugin/OpenTopoMap.php
src/Plugin/LeafletTileLayerPlugin/OpenTopoMap.php
<?php
namespace Drupal\geofield_map\Plugin\LeafletTileLayerPlugin;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\geofield_map\Attribute\LeafletTileLayerPlugin;
use Drupal\geofield_map\LeafletTileLayerPluginBase;
/**
* Provides an OpenTopoMap Leaflet TileLayer Plugin.
*
* @LeafletTileLayerPlugin(
* id = "OpenTopoMap",
* label = "OpenTopoMap",
* url = "http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png",
* options = {
* "maxZoom" = 17,
* "attribution" = "Map data: ©
* <a href='http://www.openstreetmap.org/copyright'>OpenStreetMap</a>,
* <a href='http://viewfinderpanoramas.org'>SRTM</a> | Map style: ©
* <a href='https://opentopomap.org'>OpenTopoMap</a>
* (<a href='https://creativecommons.org/licenses/by-sa/3.0/'>CC-BY-SA</a>)",
* }
* )
*/
#[LeafletTileLayerPlugin(
id: "OpenTopoMap",
label: new TranslatableMarkup("OpenTopoMap"),
url: "http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png",
options: [
"maxZoom" => 17,
"attribution" => "Map data: ©
<a href='http://www.openstreetmap.org/copyright'>OpenStreetMap</a>,
<a href='http://viewfinderpanoramas.org'>SRTM</a> | Map style: ©
<a href='https://opentopomap.org'>OpenTopoMap</a>
(<a href='https://creativecommons.org/licenses/by-sa/3.0/'>CC-BY-SA</a>)",
],
)]
class OpenTopoMap extends LeafletTileLayerPluginBase {}
