Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/location/lib/staticmap/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/location/lib/staticmap/sourcestaticmapservice.php

<?php

namespace Bitrix\Location\StaticMap;

use Bitrix\Location\Entity\Source;
use Bitrix\Location\Geometry\Type\Point;

abstract class SourceStaticMapService implements ISourceStaticMapService
{
	protected Source $source;

	public function __construct(Source $source)
	{
		$this->source = $source;
	}

	abstract public function getStaticMap(
		Point $point,
		int $zoom,
		int $width,
		int $height
	): StaticMapResult;
}