mirror of
https://github.com/farmOS/farmOS.git
synced 2024-02-23 11:37:38 +01:00
77 lines
2 KiB
PHP
77 lines
2 KiB
PHP
<?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',
|
|
'height' => '500px',
|
|
'view' => array(
|
|
'center' => array(
|
|
'lat' => 0,
|
|
'lon' => 0,
|
|
),
|
|
'rotation' => 0,
|
|
'zoom' => 2,
|
|
'minZoom' => 0,
|
|
'maxZoom' => 24,
|
|
),
|
|
'renderer' => 'canvas',
|
|
'layers' => array(
|
|
0 => 'farm_area_layer_group',
|
|
1 => 'farm_map_layer_group',
|
|
),
|
|
'controls' => array(
|
|
0 => 'openlayers_control_zoom',
|
|
1 => 'openlayers_control_scaleline',
|
|
2 => 'farm_map_control_layer_switcher',
|
|
3 => 'farm_map_control_geolocate',
|
|
/**
|
|
* @todo
|
|
* https://www.drupal.org/node/2543186
|
|
*/
|
|
// 4 => '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;
|
|
}
|
|
|
|
/**
|
|
* Implements hook_default_openlayers_maps_alter().
|
|
*/
|
|
function farm_area_default_openlayers_maps_alter(&$maps) {
|
|
|
|
// Add "all areas" group layer to farm_geofield* maps.
|
|
foreach ($maps as &$map) {
|
|
if (substr($map->machine_name, 0, 17) == 'farm_map_geofield') {
|
|
$map->options['layers'][] = 'farm_area_layer_areas_group';
|
|
}
|
|
}
|
|
}
|