## Look up elevation at one or more points `ElevationLookupResult elevation().lookup(ElevationLookupParamsparams = ElevationLookupParams.none(), RequestOptionsrequestOptions = RequestOptions.none())` **get** `/api/v1/elevation` Look up elevation at one or more points ### Parameters - `ElevationLookupParams params` - `Optional lat` Latitude (single point) - `Optional lng` Longitude (single point) - `Optional locations` Pipe-separated lng,lat pairs (batch) ### Returns - `class ElevationLookupResult:` GeoJSON Point Feature with 3D coordinate [lng, lat, elevation] (RFC 7946 ยง3.1.1) - `GeoJsonGeometry geometry` - `Coordinates coordinates` GeoJSON coordinates array (nesting depth varies by geometry type) - `List` - `List>` - `List>>` - `List>>>` - `Type type` - `POINT("Point")` - `LINE_STRING("LineString")` - `POLYGON("Polygon")` - `MULTI_POINT("MultiPoint")` - `MULTI_LINE_STRING("MultiLineString")` - `MULTI_POLYGON("MultiPolygon")` - `Properties properties` - `Optional elevationM` Elevation in meters above mean sea level - `Type type` - `FEATURE("Feature")` ### Example ```java package com.plazafyi.example; import com.plazafyi.client.PlazaClient; import com.plazafyi.client.okhttp.PlazaOkHttpClient; import com.plazafyi.models.elevation.ElevationLookupParams; import com.plazafyi.models.elevation.ElevationLookupResult; public final class Main { private Main() {} public static void main(String[] args) { PlazaClient client = PlazaOkHttpClient.fromEnv(); ElevationLookupResult elevationLookupResult = client.elevation().lookup(); } } ```