You are here

function openlayers_layer_type_wms::options_form in Openlayers 6.2

Same name and namespace in other branches
  1. 7.2 plugins/layer_types/openlayers_layer_type_wms.inc \openlayers_layer_type_wms::options_form()

Options form which generates layers

Overrides openlayers_layer_type::options_form

File

includes/layer_types/wms.inc, line 44
WMS Layer Type

Class

openlayers_layer_type_wms
OpenLayers WMS Layer Type class

Code

function options_form() {
  return array(
    'base_url' => array(
      '#type' => 'textfield',
      '#title' => t('Base URL'),
      '#default_value' => isset($this->data['base_url']) ? $this->data['base_url'] : '',
    ),
    // TODO: swap terms
    'params' => array(
      'isBaseLayer' => array(
        '#type' => 'checkbox',
        '#default_value' => isset($this->data['params']['isBaseLayer']) ? $this->data['params']['isBaseLayer'] : TRUE,
        '#return_value' => TRUE,
        '#title' => t('BaseLayer'),
        '#description' => t('Uncheck to make this map an overlay'),
      ),
      // TODO: validate the field, only positive integers shall be allowed
      'buffer' => array(
        '#type' => 'textfield',
        '#default_value' => isset($this->data['params']['buffer']) ? $this->data['params']['buffer'] : 2,
        '#title' => t('Buffer'),
        '#description' => t('Used only when not in single-tile mode, this specifies umber of extra rows and colums of tiles on each side which will surround the minimum grid tiles to cover the map'),
      ),
      // TODO: validate the field, only positive numbers shall be allowed
      //       numbers below 1 might also not make much sense
      'ratio' => array(
        '#type' => 'textfield',
        '#default_value' => isset($this->data['params']['ratio']) ? $this->data['params']['ratio'] : 1.5,
        '#title' => t('Ratio'),
        '#description' => t('Used only when in single-tile mode, this specifies the ratio of the size of the single tile to the size of the map'),
      ),
      'singleTile' => array(
        '#type' => 'checkbox',
        '#default_value' => isset($this->data['params']['singleTile']) ? $this->data['params']['singleTile'] : FALSE,
        '#title' => t('Single tile'),
        '#description' => t('Check to make this layer untiled'),
      ),
    ),
    'options' => array(
      'srs' => array(
        '#type' => 'select',
        '#title' => t('Projection'),
        '#options' => array(
          'EPSG:900913' => '900913',
          'EPSG:4326' => '4326',
        ),
        '#default_value' => isset($this->data['options']['srs']) ? $this->data['options']['srs'] : '900913',
      ),
      'TRANSPARENT' => array(
        '#type' => 'checkbox',
        '#default_value' => isset($this->data['options']['TRANSPARENT']) ? $this->data['options']['TRANSPARENT'] : FALSE,
        '#return_value' => TRUE,
        '#title' => t('Transparent'),
        '#description' => t('When a PNG, make the background color transparent'),
      ),
      'exceptions' => array(
        '#type' => 'select',
        '#title' => t('Exceptions'),
        '#options' => array(
          'application/vnd.ogc.se_xml' => 'application/vnd.ogc.se_xml',
          'application/vnd.ogc.se_inimage' => 'application/vnd.ogc.se_inimage',
        ),
        '#default_value' => isset($this->data['options']['exceptions']) ? $this->data['options']['exceptions'] : 'application/vnd.ogc.se_inimage',
        '#description' => t('Select the exception handler'),
      ),
      'format' => array(
        '#type' => 'select',
        '#title' => t('File Format'),
        '#options' => array(
          'image/png' => 'image/png',
          'image/gif' => 'image/gif',
          'image/jpeg' => 'image/jpeg',
        ),
        '#default_value' => isset($this->data['options']['format']) ? $this->data['options']['format'] : 'image/png',
      ),
      'layers' => array(
        '#type' => 'textfield',
        '#title' => t('Layers'),
        '#default_value' => isset($this->data['options']['layers']) ? $this->data['options']['layers'] : '',
      ),
      'styles' => array(
        '#type' => 'textfield',
        '#title' => t('Styles'),
        '#default_value' => isset($this->data['options']['styles']) ? $this->data['options']['styles'] : '',
      ),
    ),
    'layer_type' => array(
      '#type' => 'hidden',
      '#value' => 'openlayers_layer_type_wms',
    ),
  );
}