Longman\TelegramBot\Commands\UserCommands\DateCommand::getCoordinates PHP Method

getCoordinates() private method

Get coordinates
private getCoordinates ( string $location ) : array
$location string
return array
    private function getCoordinates($location)
    {
        $path = 'geocode/json';
        $query = ['address' => urlencode($location)];
        if ($this->google_api_key !== null) {
            $query['key'] = $this->google_api_key;
        }
        try {
            $response = $this->client->get($path, ['query' => $query]);
        } catch (RequestException $e) {
            TelegramLog::error($e->getMessage());
            return [];
        }
        if (!($data = $this->validateResponseData($response->getBody()))) {
            return [];
        }
        $result = $data['results'][0];
        $lat = $result['geometry']['location']['lat'];
        $lng = $result['geometry']['location']['lng'];
        $acc = $result['geometry']['location_type'];
        $types = $result['types'];
        return [$lat, $lng, $acc, $types];
    }