Query features by bounding box or H3 cell
$client->elements->query(?string bbox, ?string cursor, ?string h3, ?int limit, ?string type): FeatureCollection
GET/api/v1/features
Query features by bounding box or H3 cell
Parameters
Query features by bounding box or H3 cell
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'My API Key', environment: 'local');
$featureCollection = $client->elements->query(
bbox: 'bbox', cursor: 'cursor', h3: 'h3', limit: 0, type: 'type'
);
var_dump($featureCollection);