You are here

protected function Scroller::defineOptions in Openlayers 8.4

Set default options

Overrides StylePluginBase::defineOptions

File

src/Plugin/views/style/Scroller.php, line 31
Definition of Drupal\my_scroller\Plugin\views\style\Scroller.

Class

Scroller
Style plugin to render listing.

Namespace

Drupal\openlayers\Plugin\views\style

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['height'] = array(
    'default' => '354',
  );
  return $options;
}