Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/location/lib/source/osm/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/location/lib/source/osm/nodetypemap.php

<?php

namespace Bitrix\Location\Source\Osm;

class NodeTypeMap
{
	private static $map = [
		'relation' => 'R',
		'way' => 'W',
		'node' => 'N',
	];

	public static function getShortNodeTypeCode(string $longNodeTypeCode): string
	{
		return self::$map[$longNodeTypeCode] ?? '';
	}
}