• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/source/osm/osmsource.php
  • Класс: BitrixLocationSourceOsmOsmSource
  • Вызов: OsmSource::getOsmServiceUrl
public function getOsmServiceUrl(): ?string
{
	if (defined('LOCATION_OSM_SERVICE_URL') && LOCATION_OSM_SERVICE_URL)
	{
		return (string)LOCATION_OSM_SERVICE_URL;
	}

	return $this->getConfig()
		? $this->getConfig()->getValue('SERVICE_URL')
		: null;
}