import Plaza from "plaza";
const client = new Plaza();
const result = await client.v1.features.query({
around: { type: "Point", coordinates: [, ] },
radius: 500,
limit: 100,
});
console.log(result);
from plaza import Plaza
client = Plaza()
result = client.v1.features.query(
around={"type": "Point", "coordinates": [, ]},
radius=500,
limit=100,
)
print(result)