You are here

protected function MarkerIconService::markersLocationUri in Geofield Map 8.2

Returns the Markers Location Uri.

Return value

string The markers location uri.

2 calls to MarkerIconService::markersLocationUri()
MarkerIconService::getFileSelectHelp in src/Services/MarkerIconService.php
Generate File Select Help Message.
MarkerIconService::getIconFileManagedElement in src/Services/MarkerIconService.php
Generate Icon File Managed Element.

File

src/Services/MarkerIconService.php, line 150

Class

MarkerIconService
Provides an Icon Managed File Service.

Namespace

Drupal\geofield_map\Services

Code

protected function markersLocationUri() {
  return !empty($this->geofieldMapSettings
    ->get('theming.markers_location.security') . $this->geofieldMapSettings
    ->get('theming.markers_location.rel_path')) ? $this->geofieldMapSettings
    ->get('theming.markers_location.security') . $this->geofieldMapSettings
    ->get('theming.markers_location.rel_path') : 'public://geofieldmap_markers';
}