You are here

function openlayers_ui_layers_types in Openlayers 6.2

Layer add/edit form.

1 string reference to 'openlayers_ui_layers_types'
openlayers_ui_menu in modules/openlayers_ui/openlayers_ui.module
Implementation of hook_menu

File

modules/openlayers_ui/includes/openlayers_ui.layers.inc, line 14
This file holds the functions handling layers in the Openlayers UI.

Code

function openlayers_ui_layers_types(&$form_state, $layer = NULL, $edit = FALSE) {
  $form = array();
  $form['layer_types'] = openlayers_ui_get_layer_type_options('map');
  return $form;
}