openlayers-8.x-4.x-dev/src/OpenlayersControlInterface.php
src/OpenlayersControlInterface.php
<?php
namespace Drupal\openlayers;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface defining an Openlayers Control entity.
*/
interface OpenlayersControlInterface extends ConfigEntityInterface {
// Add get/set methods for your configuration properties here.
////////////////////////////////////
public function id();
////////////////////////////////////
/**
* Returns the image style.
*
* @return string
* The name of the image style.
*/
public function getName();
}