Batch geocode multiple addresses
GeocodeBatchResponse 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);
}
}{
"count": 0,
"results": [
{
"features": [
{
"geometry": {
"coordinates": [
2.3522,
48.8566
],
"type": "Point"
},
"properties": {
"display_name": "221B Baker Street, London, NW1 6XE, United Kingdom",
"category": "restaurant",
"city": "London",
"confidence": 0,
"country": "United Kingdom",
"country_code": "GB",
"distance_m": 0,
"full_address": "221B Baker Street, London, NW1 6XE, United Kingdom",
"house_number": "221B",
"interpolated": true,
"name": "Eiffel Tower",
"osm_id": 21154906,
"osm_type": "node",
"postcode": "NW1 6XE",
"score": 0,
"source": "structured",
"state": "England",
"street": "Baker Street",
"subcategory": "italian",
"tags": {
"foo": "string"
},
"wikipedia": "en:Eiffel Tower"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}
]
}Returns Examples
{
"count": 0,
"results": [
{
"features": [
{
"geometry": {
"coordinates": [
2.3522,
48.8566
],
"type": "Point"
},
"properties": {
"display_name": "221B Baker Street, London, NW1 6XE, United Kingdom",
"category": "restaurant",
"city": "London",
"confidence": 0,
"country": "United Kingdom",
"country_code": "GB",
"distance_m": 0,
"full_address": "221B Baker Street, London, NW1 6XE, United Kingdom",
"house_number": "221B",
"interpolated": true,
"name": "Eiffel Tower",
"osm_id": 21154906,
"osm_type": "node",
"postcode": "NW1 6XE",
"score": 0,
"source": "structured",
"state": "England",
"street": "Baker Street",
"subcategory": "italian",
"tags": {
"foo": "string"
},
"wikipedia": "en:Eiffel Tower"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}
]
}