You are here

function theme_openlayers_views_feature_style in Openlayers 6

Theme function for openlayers_views_feature_style

1 theme call to theme_openlayers_views_feature_style()
openlayers_views_style_map::map_features in modules/openlayers_views/views/openlayers_views_style_map.inc
Map features

File

modules/openlayers_views/includes/openlayers_views.theme.inc, line 13
This file holds the theme functions for openlayers_views module

Code

function theme_openlayers_views_feature_style($view = NULL, $row = NULL, $group = NULL) {
  $output = array();

  // Here is where styles based on the view or row can be created
  return $output;
}