class LeafletService in Leaflet 2.1.x
Same name and namespace in other branches
- 8 src/LeafletService.php \Drupal\leaflet\LeafletService
- 2.0.x src/LeafletService.php \Drupal\leaflet\LeafletService
Provides a LeafletService class.
Hierarchy
- class \Drupal\leaflet\LeafletService
Expanded class hierarchy of LeafletService
1 file declares its use of LeafletService
- LeafletDefaultWidget.php in src/
Plugin/ Field/ FieldWidget/ LeafletDefaultWidget.php
1 string reference to 'LeafletService'
1 service uses LeafletService
File
- src/
LeafletService.php, line 17
Namespace
Drupal\leafletView source
class LeafletService {
/**
* Current user service.
*
* @var \Drupal\Core\Session\AccountInterface
*/
protected $currentUser;
/**
* The geoPhpWrapper service.
*
* @var \Drupal\geofield\GeoPHP\GeoPHPInterface
*/
protected $geoPhpWrapper;
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* The Link generator Service.
*
* @var \Drupal\Core\Utility\LinkGeneratorInterface
*/
protected $link;
/**
* LeafletService constructor.
*
* @param \Drupal\Core\Session\AccountInterface $current_user
* Current user service.
* @param \Drupal\geofield\GeoPHP\GeoPHPInterface $geophp_wrapper
* The geoPhpWrapper.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
* @param \Drupal\Core\Utility\LinkGeneratorInterface $link_generator
* The Link Generator service.
*/
public function __construct(AccountInterface $current_user, GeoPHPInterface $geophp_wrapper, ModuleHandlerInterface $module_handler, LinkGeneratorInterface $link_generator) {
$this->currentUser = $current_user;
$this->geoPhpWrapper = $geophp_wrapper;
$this->moduleHandler = $module_handler;
$this->link = $link_generator;
}
/**
* Load all Leaflet required client files and return markup for a map.
*
* @param array $map
* The map settings array.
* @param array $features
* The features array.
* @param string $height
* The height value string.
*
* @return array
* The leaflet_map render array.
*/
public function leafletRenderMap(array $map, array $features = [], $height = '400px') {
$map_id = isset($map['id']) ? $map['id'] : Html::getUniqueId('leaflet_map');
$attached_libraries = [
'leaflet/general',
'leaflet/leaflet-drupal',
];
// Add the Leaflet Fullscreen library, if requested.
if (!empty($map['settings']['fullscreen_control'])) {
$attached_libraries[] = 'leaflet/leaflet.fullscreen';
}
// Add the Leaflet Gesture Handling library, if requested.
if (!empty($map['settings']['gestureHandling'])) {
$attached_libraries[] = 'leaflet/leaflet.gesture_handling';
}
// Add the Leaflet Markercluster library and functionalities, if requested.
if ($this->moduleHandler
->moduleExists('leaflet_markercluster') && isset($map['settings']['leaflet_markercluster']) && $map['settings']['leaflet_markercluster']['control']) {
$attached_libraries[] = 'leaflet_markercluster/leaflet-markercluster';
$attached_libraries[] = 'leaflet_markercluster/leaflet-markercluster-drupal';
}
// Add the Leaflet Geocoder library and functionalities, if requested,
// and the user has access to Geocoder Api Enpoints.
if (!empty($map['settings']['geocoder']['control'])) {
$this
->setGeocoderControlSettings($map['settings']['geocoder'], $attached_libraries);
}
$settings[$map_id] = [
'mapid' => $map_id,
'map' => $map,
// JS only works with arrays, make sure we have one with numeric keys.
'features' => array_values($features),
];
return [
'#theme' => 'leaflet_map',
'#map_id' => $map_id,
'#height' => $height,
'#map' => $map,
'#attached' => [
'library' => $attached_libraries,
'drupalSettings' => [
'leaflet' => $settings,
],
],
];
}
/**
* Get all available Leaflet map definitions.
*
* @param string $map
* The specific map definition string.
*
* @return array
* The leaflet maps definition array.
*/
public function leafletMapGetInfo($map = NULL) {
static $drupal_static_fast;
if (!isset($drupal_static_fast)) {
$drupal_static_fast['leaflet_map_info'] =& drupal_static(__FUNCTION__);
}
$map_info =& $drupal_static_fast['leaflet_map_info'];
if (empty($map_info)) {
if ($cached = \Drupal::cache()
->get('leaflet_map_info')) {
$map_info = $cached->data;
}
else {
$map_info = $this->moduleHandler
->invokeAll('leaflet_map_info');
// Let other modules alter the map info.
$this->moduleHandler
->alter('leaflet_map_info', $map_info);
\Drupal::cache()
->set('leaflet_map_info', $map_info);
}
}
if (empty($map)) {
return $map_info;
}
else {
return isset($map_info[$map]) ? $map_info[$map] : [];
}
}
/**
* Convert a geofield into an array of map points.
*
* The map points can then be fed into $this->leafletRenderMap().
*
* @param mixed $items
* A single value or array of geo values, each as a string in any of the
* supported formats or as an array of $item elements, each with a
* $item['wkt'] field.
*
* @return array
* The return array.
*/
public function leafletProcessGeofield($items = []) {
if (!is_array($items)) {
$items = [
$items,
];
}
$data = [];
foreach ($items as $item) {
// Auto-detect and parse the format (e.g. WKT, JSON etc).
/* @var \GeometryCollection $geom */
if (!($geom = $this->geoPhpWrapper
->load(isset($item['wkt']) ? $item['wkt'] : $item))) {
continue;
}
$data[] = $this
->leafletProcessGeometry($geom);
}
return $data;
}
/**
* Process the Geometry Collection.
*
* @param \Geometry $geom
* The Geometry Collection.
*
* @return array
* The return array.
*/
private function leafletProcessGeometry(\Geometry $geom) {
$datum = [
'type' => strtolower($geom
->geometryType()),
];
switch ($datum['type']) {
case 'point':
$datum = [
'type' => 'point',
'lat' => $geom
->getY(),
'lon' => $geom
->getX(),
];
break;
case 'linestring':
/* @var \GeometryCollection $geom */
$components = $geom
->getComponents();
/* @var \Geometry $component */
foreach ($components as $component) {
$datum['points'][] = [
'lat' => $component
->getY(),
'lon' => $component
->getX(),
];
}
break;
case 'polygon':
/* @var \GeometryCollection $geom */
$tmp = $geom
->getComponents();
/* @var \GeometryCollection $geom */
$geom = $tmp[0];
$components = $geom
->getComponents();
/* @var \Geometry $component */
foreach ($components as $component) {
$datum['points'][] = [
'lat' => $component
->getY(),
'lon' => $component
->getX(),
];
}
break;
case 'multipolyline':
case 'multilinestring':
if ($datum['type'] == 'multilinestring') {
$datum['type'] = 'multipolyline';
$datum['multipolyline'] = TRUE;
}
/* @var \GeometryCollection $geom */
$components = $geom
->getComponents();
/* @var \GeometryCollection $component */
foreach ($components as $key => $component) {
$subcomponents = $component
->getComponents();
/* @var \Geometry $subcomponent */
foreach ($subcomponents as $subcomponent) {
$datum['component'][$key]['points'][] = [
'lat' => $subcomponent
->getY(),
'lon' => $subcomponent
->getX(),
];
}
unset($subcomponent);
}
break;
case 'multipolygon':
$components = [];
/* @var \GeometryCollection $geom */
$tmp = $geom
->getComponents();
/* @var \GeometryCollection $polygon */
foreach ($tmp as $delta => $polygon) {
$polygon_component = $polygon
->getComponents();
foreach ($polygon_component as $k => $linestring) {
$components[] = $linestring;
}
}
foreach ($components as $key => $component) {
$subcomponents = $component
->getComponents();
/* @var \Geometry $subcomponent */
foreach ($subcomponents as $subcomponent) {
$datum['component'][$key]['points'][] = [
'lat' => $subcomponent
->getY(),
'lon' => $subcomponent
->getX(),
];
}
}
break;
case 'geometrycollection':
case 'multipoint':
/* @var \GeometryCollection $geom */
$components = $geom
->getComponents();
foreach ($components as $key => $component) {
$datum['component'][$key] = $this
->leafletProcessGeometry($component);
}
break;
}
return $datum;
}
/**
* Leaflet Icon Documentation Link.
*
* @return \Drupal\Core\GeneratedLink
* The Leaflet Icon Documentation Link.
*/
public function leafletIconDocumentationLink() {
return $this->link
->generate(t('Leaflet Icon Documentation'), Url::fromUri('https://leafletjs.com/reference-1.3.0.html#icon', [
'absolute' => TRUE,
'attributes' => [
'target' => 'blank',
],
]));
}
/**
* Generate an Absolute Url from a string Path.
*
* @param string $path
* The path string to generate.
*
* @return string
* The absolute $path
*/
public function pathToAbsolute($path) {
if (!UrlHelper::isExternal($path)) {
$path = Url::fromUri('base:', [
'absolute' => TRUE,
])
->toString() . $path;
}
return $path;
}
/**
* Set Feature Icon Size & Shadow Size If Empty or Invalid.
*
* @param array $feature
* The feature array.
*/
public function setFeatureIconSizesIfEmptyOrInvalid(array &$feature) {
if (isset($feature["icon"]["iconSize"]) && (empty(intval($feature["icon"]["iconSize"]["x"])) && empty(intval($feature["icon"]["iconSize"]["y"]))) && (!empty($feature["icon"]["iconUrl"]) && $this
->fileExists($feature["icon"]["iconUrl"]))) {
$iconSize = getimagesize($feature["icon"]["iconUrl"]);
$feature["icon"]["iconSize"]["x"] = $iconSize[0];
$feature["icon"]["iconSize"]["y"] = $iconSize[1];
}
if (isset($feature["icon"]["shadowSize"]) && (empty(intval($feature["icon"]["shadowSize"]["x"])) && empty(intval($feature["icon"]["shadowSize"]["y"]))) && (!empty($feature["icon"]["shadowUrl"]) && $this
->fileExists($feature["icon"]["shadowUrl"]))) {
$shadowSize = getimagesize($feature["icon"]["iconUrl"]);
$feature["icon"]["shadowSize"]["x"] = $shadowSize[0];
$feature["icon"]["shadowSize"]["y"] = $shadowSize[1];
}
}
/**
* Check if a file exists.
*
* @param string $fileUrl
* The file url.
*
* @return bool
* The bool result.
*/
public function fileExists($fileUrl) {
$file_headers = @get_headers($fileUrl);
if (stripos($file_headers[0], "404 Not Found") == 0 && (stripos($file_headers[0], "302 Found") == 0 && stripos($file_headers[7], "404 Not Found") == 0)) {
return TRUE;
}
return FALSE;
}
/**
* Check if an array has all values empty.
*
* @param array $array
* The array to check.
*
* @return bool
* The bool result.
*/
public function multipleEmpty(array $array) {
foreach ($array as $value) {
if (empty($value)) {
continue;
}
else {
return FALSE;
}
}
return TRUE;
}
/**
* Set Geocoder Controls Settings.
*
* @param array $geocoder_settings
* The geocoder settings.
* @param array $attached_libraries
* The attached libraries.
*/
public function setGeocoderControlSettings(array &$geocoder_settings, array &$attached_libraries) : void {
if ($this->moduleHandler
->moduleExists('geocoder') && class_exists('\\Drupal\\geocoder\\Controller\\GeocoderApiEnpoints') && $geocoder_settings['control'] && $this->currentUser
->hasPermission('access geocoder api endpoints')) {
$attached_libraries[] = 'leaflet/leaflet.geocoder';
// Set the geocoder settings ['providers'] as the enabled ones.
$enabled_providers = [];
foreach ($geocoder_settings['settings']['providers'] as $plugin_id => $plugin) {
if (!empty($plugin['checked'])) {
$enabled_providers[] = $plugin_id;
}
}
$geocoder_settings['settings']['providers'] = $enabled_providers;
$geocoder_settings['settings']['options'] = [
'options' => Json::decode($geocoder_settings['settings']['options']) ?? '',
];
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LeafletService:: |
protected | property | Current user service. | |
LeafletService:: |
protected | property | The geoPhpWrapper service. | |
LeafletService:: |
protected | property | The Link generator Service. | |
LeafletService:: |
protected | property | The module handler. | |
LeafletService:: |
public | function | Check if a file exists. | |
LeafletService:: |
public | function | Leaflet Icon Documentation Link. | |
LeafletService:: |
public | function | Get all available Leaflet map definitions. | |
LeafletService:: |
public | function | Convert a geofield into an array of map points. | |
LeafletService:: |
private | function | Process the Geometry Collection. | |
LeafletService:: |
public | function | Load all Leaflet required client files and return markup for a map. | |
LeafletService:: |
public | function | Check if an array has all values empty. | |
LeafletService:: |
public | function | Generate an Absolute Url from a string Path. | |
LeafletService:: |
public | function | Set Feature Icon Size & Shadow Size If Empty or Invalid. | |
LeafletService:: |
public | function | Set Geocoder Controls Settings. | |
LeafletService:: |
public | function | LeafletService constructor. |