## Look up elevation at one or more points `$client->elevation->lookup(?float lat, ?float lng, ?string locations): ElevationLookupResult` **get** `/api/v1/elevation` Look up elevation at one or more points ### Parameters - `lat?:optional float` Latitude (single point) - `lng?:optional float` Longitude (single point) - `locations?:optional string` Pipe-separated lng,lat pairs (batch) ### Returns - `ElevationLookupResult` - `GeoJsonGeometry geometry` - `Properties properties` - `Type type` ### Example ```php elevation->lookup( lat: 0, lng: 0, locations: 'locations' ); var_dump($elevationLookupResult); ```