3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/farm/farm_area/farm_area.default_openlayers_maps.inc

78 lines
2 KiB
PHP
Raw Normal View History

<?php
/**
* @file
* farm_area.default_openlayers_maps.inc
*/
/**
* Implements hook_default_openlayers_maps().
*/
function farm_area_default_openlayers_maps() {
$export = array();
$ol_map = new stdClass();
$ol_map->disabled = FALSE; /* Edit this to true to make a default ol_map disabled initially */
$ol_map->api_version = 1;
$ol_map->machine_name = 'farm_areas';
$ol_map->name = 'Farm Areas';
$ol_map->description = 'A map of all farm areas, color-coded by type.';
$ol_map->factory_service = 'openlayers.Map:OLMap';
$ol_map->options = array(
'width' => 'auto',
2015-07-29 23:09:00 +02:00
'height' => '500px',
'view' => array(
'center' => array(
'lat' => 0,
'lon' => 0,
),
'rotation' => 0,
'zoom' => 2,
'minZoom' => 0,
2016-03-09 15:42:01 +01:00
'maxZoom' => 24,
),
'renderer' => 'canvas',
'layers' => array(
2015-07-31 19:03:10 +02:00
0 => 'farm_area_layer_group',
),
'controls' => array(
0 => 'openlayers_control_zoom',
1 => 'openlayers_control_scaleline',
2 => 'farm_map_control_layer_switcher',
3 => 'farm_map_control_geolocate',
4 => 'farm_map_control_geocoder',
/**
* @todo
* https://www.drupal.org/node/2543186
*/
// 5 => 'openlayers_control_fullscreen',
),
'components' => array(
0 => 'farm_area_component_areas_zoom_to_source',
1 => 'farm_area_component_area_details_popup',
2 => 'farm_map_component_progress_bar',
),
'interactions' => array(
0 => 'openlayers_interaction_doubleclickzoom',
1 => 'openlayers_interaction_dragpan',
2 => 'openlayers_interaction_mousewheelzoom',
3 => 'openlayers_interaction_pinchzoom',
),
);
$export['farm_areas'] = $ol_map;
return $export;
}
2015-07-31 05:00:44 +02:00
/**
* Implements hook_default_openlayers_maps_alter().
*/
function farm_area_default_openlayers_maps_alter(&$maps) {
// Add "all areas" group layer to farm_geofield* maps.
2015-07-31 05:00:44 +02:00
foreach ($maps as &$map) {
if (substr($map->machine_name, 0, 17) == 'farm_map_geofield') {
$map->options['layers'][] = 'farm_area_layer_areas_group';
2015-07-31 05:00:44 +02:00
}
}
}