• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/source/osm/converters/baseconverter.php
  • Класс: BitrixLocationSourceOsmConvertersBaseConverter
  • Вызов: BaseConverter::isCityState
protected function isCityState(): bool
{
	$adminLevel1 = $this->getAdminLevel1();

	return (
		$adminLevel1['osm_type'] === 'R'
		&& in_array($adminLevel1['osm_id'], $this->getCityStateRelationIds(), true)
	);
}