Query features by bounding box or H3 cell
elements().query(ElementQueryParamsparams = ElementQueryParams.none(), RequestOptionsrequestOptions = RequestOptions.none()) : FeatureCollection
GET/api/v1/features
Query features by bounding box or H3 cell
package com.plazafyi.example
import com.plazafyi.client.PlazaClient
import com.plazafyi.client.okhttp.PlazaOkHttpClient
import com.plazafyi.models.FeatureCollection
import com.plazafyi.models.elements.ElementQueryParams
fun main() {
val client: PlazaClient = PlazaOkHttpClient.fromEnv()
val featureCollection: FeatureCollection = client.elements().query()
}