1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
ifindbycoords.php
См. документацию.
1<?php
2
3namespace Bitrix\Location\Repository\Location\Capability;
4
5use Bitrix\Location\Entity\Location;
6
7interface IFindByCoords
8{
9 public function findByCoords(
10 float $lat,
11 float $lng,
12 int $zoom,
13 string $languageId
14 ): ?Location;
15}
findByCoords(float $lat, float $lng, int $zoom, string $languageId)