You are here

function openlayers_layer_type_raw::options_init in Openlayers 6.2

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

Provide initial values for options.

Overrides openlayers_layer_type::options_init

File

includes/layer_types/raw.inc, line 11
OpenLayers Raw Layer Type

Class

openlayers_layer_type_raw
@file OpenLayers Raw Layer Type

Code

function options_init() {
  return array(
    'layer_type' => 'openlayers_layer_type_raw',
    'layer_handler' => 'openlayers_raw',
    'vector' => TRUE,
    'baselayer' => FALSE,
  );
}