You are here

function _openlayers_openlayers_styles in Openlayers 7.2

Same name and namespace in other branches
  1. 6.2 includes/openlayers.styles.inc \_openlayers_openlayers_styles()

Internal callback Helper function to return default styles.

Return value

mixed

1 call to _openlayers_openlayers_styles()
openlayers_openlayers_styles in ./openlayers.module
Implements hook_openlayers_styles().

File

includes/openlayers.styles.inc, line 16
This file contains styles implementations.

Code

function _openlayers_openlayers_styles() {
  $styles = array();

  // Hides features
  $style = new stdClass();
  $style->api_version = 1;
  $style->name = 'invisible';
  $style->title = t('Invisible style');
  $style->description = t('Invisible default style.');
  $style->data = array(
    'pointRadius' => '0',
    'strokeWidth' => '0',
    'fillOpacity' => '0',
  );
  $styles[$style->name] = $style;

  // Default style
  $style = new stdClass();
  $style->api_version = 1;
  $style->name = 'default';
  $style->title = t('Default style');
  $style->description = t('Basic default style.');
  $style->data = array(
    'pointRadius' => '6',
    'fillColor' => '#888888',
    'strokeColor' => '#222222',
    'strokeWidth' => '4',
    'fillOpacity' => '0.5',
    'strokeOpacity' => '0.7',
  );
  $styles[$style->name] = $style;

  // Default select style
  $style = new stdClass();
  $style->api_version = 1;
  $style->name = 'default_select';
  $style->title = t('Default select style');
  $style->description = t('Default style for selected geometries');
  $style->data = array(
    'pointRadius' => '6',
    'fillColor' => '#222222',
    'strokeColor' => '#888888',
    'strokeWidth' => '4',
    'fillOpacity' => '0.7',
    'strokeOpacity' => '0.8',
  );
  $styles[$style->name] = $style;

  // Default temporary style
  $style = new stdClass();
  $style->api_version = 1;
  $style->name = 'default_temporary_select';
  $style->title = t('Default temporary select style');
  $style->description = t('Default temporary style when using tooltips or hovering behavior');
  $style->data = array(
    'pointRadius' => '6',
    'fillColor' => '#222222',
    'strokeColor' => '#888888',
    'strokeWidth' => '4',
    'fillOpacity' => '0.9',
    'strokeOpacity' => '0.8',
  );
  $styles[$style->name] = $style;

  // Custom black markers
  $style = new stdClass();
  $style->api_version = 1;
  $style->name = 'default_marker_black';
  $style->title = t('Marker Black');
  $style->description = t('Black marker provided by the OpenLayers module.');
  $style->data = array(
    'externalGraphic' => base_path() . drupal_get_path('module', 'openlayers') . '/themes/default_dark/markers/marker-black.png',
    'graphicWidth' => 25,
    'graphicHeight' => 41,
    'graphicXOffset' => -12,
    'graphicYOffset' => -41,
  );
  $styles[$style->name] = $style;
  $style = new stdClass();
  $style->api_version = 1;
  $style->name = 'default_marker_black_small';
  $style->title = t('Marker Black Small');
  $style->description = t('Small black marker provided by the OpenLayers module.');
  $style->data = array(
    'externalGraphic' => base_path() . drupal_get_path('module', 'openlayers') . '/themes/default_dark/markers/marker-black-small.png',
    'graphicWidth' => 16,
    'graphicHeight' => 26,
    'graphicXOffset' => -8,
    'graphicYOffset' => -26,
  );
  $styles[$style->name] = $style;

  // Marker styles
  $markers = array(
    'red' => t('Red'),
    'green' => t('Green'),
    'gold' => t('Gold'),
    'blue' => t('Blue'),
  );
  foreach ($markers as $marker => $color) {
    $style = new stdClass();
    $style->api_version = 1;
    $style->name = 'default_marker_' . $marker;
    $style->title = t('Marker !color', array(
      '!color' => $color,
    ));
    $style->description = t('!color marker provided by the OpenLayers module.', array(
      '!color' => $color,
    ));
    $style->data = array(
      'externalGraphic' => base_path() . drupal_get_path('module', 'openlayers') . '/themes/default_dark/img/marker-' . $marker . '.png',
      'graphicWidth' => 21,
      'graphicHeight' => 25,
      'graphicXOffset' => -10,
      'graphicYOffset' => -25,
    );
    $styles[$style->name] = $style;
  }
  return $styles;
}