stadiamaps / api
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
v5.1.0
2026-04-27 04:25 UTC
Requires
- php: ^8.1
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.9
- phpunit/phpunit: ^8.0 || ^9.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
For more information, please visit https://docs.stadiamaps.com.
Installation & Usage
Requirements
PHP 8.1 and later.
Composer
To install the bindings via Composer, add something like this to composer.json:
{
"require": {
"stadiamaps/stadiamaps-api-php": "5.*"
}
}
Then run composer install
Manual Installation
Download the files and include autoload.php:
<?php require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');
Getting Started
First, you'll need a Stadia Maps API key. Then, you can use or require (depending on your installation method) the package. Here's a code sample.
<?php // Pick one: // // Composer: // use OpenAPI\Client\Configuration; // use OpenAPI\Client\Api\GeocodingApi; // use OpenAPI\Client\ApiException; // use GuzzleHttp; // // Manual installation: // require_once(__DIR__ . '/vendor/autoload.php'); // Configure API key authorization // NOTE: manual installation users will need the full path, like // OpenAPI\Client\Configuration $config = Configuration::getDefaultConfiguration()->setApiKey('api_key', 'YOUR_API_KEY'); $apiInstance = new GeocodingApi( new GuzzleHttp\Client(), $config ); $text = '1600 Pennsylvania Ave NW'; // The place name (address, venue name, etc.) to search for. try { $result = $apiInstance->searchV2($text, lang: 'en'); print_r($result); } catch (Exception $e) { echo 'Exception when calling GeocodingApi->searchV2: ', $e->getMessage(), PHP_EOL; }
For more examples, check out the integration tests.