Batch geocode multiple addresses
JsonValue geocode().batch(GeocodeBatchParamsparams, RequestOptionsrequestOptions = RequestOptions.none())
POST/api/v1/geocode/batch
Batch geocode multiple addresses
package com.plazafyi.example;
import com.plazafyi.client.PlazaClient;
import com.plazafyi.client.okhttp.PlazaOkHttpClient;
import com.plazafyi.models.geocode.GeocodeBatchParams;
import com.plazafyi.models.geocode.GeocodeBatchResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
PlazaClient client = PlazaOkHttpClient.fromEnv();
GeocodeBatchParams params = GeocodeBatchParams.builder()
.addAddress("string")
.build();
GeocodeBatchResponse response = client.geocode().batch(params);
}
}{}Returns Examples
{}