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
Look up elevation at one or more points
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'My API Key', environment: 'local');
$elevationLookupResult = $client->elevation->lookup(
lat: 0, lng: 0, locations: 'locations'
);
var_dump($elevationLookupResult);