Query features by bounding box or H3 cell
client.elements.query(ElementQueryParams { bbox, cursor, h3, 2 more } query?, RequestOptionsoptions?): FeatureCollection { features, type }
GET/api/v1/features
Query features by bounding box or H3 cell
import Plaza from '@plazafyi/sdk';
const client = new Plaza({
apiKey: process.env['PLAZA_API_KEY'], // This is the default and can be omitted
});
const featureCollection = await client.elements.query();
console.log(featureCollection.features);